Dav*_*ing 5 javascript arrays arguments apply
是否存在任何阻止我执行的浏览器限制或任何其他问题:
fn.apply(this, arguments);
Run Code Online (Sandbox Code Playgroud)
与:
fn.apply(this, Array.prototype.slice.call(arguments));
Run Code Online (Sandbox Code Playgroud)
我知道apply将"true" Array作为第二个参数,但传递一个参数集合似乎同样有效.要么...?