我是JavaScript新手,目前正在阅读有关数组的内容。我在documentation上看到了以下代码,关于一些对象如何不共享数组方法和解决方法:
Array.prototype.forEach.call(arguments, function(item) {
console.log(item);
});
具体来说,prototype.forEach.call(arguments
以前没见过。从.call
文档中,第一个参数是this
对象,此处提供了arguments
对象。谁能跟我一起走在这里发生的事情?