题解 | #使用 apply 调用函数#
使用 apply 调用函数
https://www.nowcoder.com/practice/d47b482e7148497582c7a995df51f393
function callIt(fn) { let arr = Array.from(arguments) arr.shift() return fn(...arr) }
使用 apply 调用函数
https://www.nowcoder.com/practice/d47b482e7148497582c7a995df51f393
function callIt(fn) { let arr = Array.from(arguments) arr.shift() return fn(...arr) }
相关推荐