console.log.apply(console, args);Math.max.apply(Math,number);
在研究apply call,这里为什么apply的第一个参数要绑定到对象身上?即为什么console.log.apply(console, args);的一个参数是console,Math.max.apply(Math,number);的第一个参数是Math?
Array.prototype.slice.apply(arguments)
而这个apply案例传的arguments?
相关分类