例:
var arr = ["one","two","three"]; arr.forEach(function(part){ part = "four"; return "four"; }) alert(arr);
数组仍保留其原始值,是否可以通过迭代函数对数组元素进行写访问?
回调传递给元素,索引和数组本身。
arr.forEach(function(part, index, theArray) { theArray[index] = "hello world"; });
编辑 -如注释中所述,该.forEach()函数可以采用第二个参数,该参数将用作this每次对回调的调用中的值:
.forEach()
this
arr.forEach(function(part, index) { this[index] = "hello world"; }, arr); // use arr as this
第二个例子说明了arr自己是this在回调中设置的。有人可能认为.forEach()调用中涉及的数组可能是的 默认 值this,但无论出于何种原因,它都不是。this会undefined如果没有提供第二个参数。
arr
undefined
(注意:this如果回调是一个=>函数,则上述内容不适用,因为this在调用此类函数时,它永远不会绑定到任何东西。)
=>
同样重要的是要记住,Array原型上提供了一整套类似的实用程序,并且在Stackoverflow上弹出了有关一个或另一个功能的许多问题,因此最好的解决方案是简单地选择其他工具。你有:
forEach
filter
map
some
every
find
等等。