139. 实现_.partial()
分享给更多人
中等难度 -通过 / -执行
_.partial()类似于Function.prototype.bind() 但是不会固定this
。
请实现partial()
。
const func = (...args) => argsconst func123 = partial(func, 1,2,3)func123(4)
同时需要支持placeholder。
const _ = partial.placeholderconst func1_3 = partial(func, 1, _, 3)func1_3(2,4)