Fang0408
Results
1
comments of
Fang0408
ES6里面的call还能用解构来传参 ` const f = function (a, b, c) { console.log(a, b, c) } const arr = [1, 2, 3] f.call(null, ...arr) `