.forEach():每个元素都调用指定函数,可传三个参数:数组元素丶元素索引丶数组本身丶 , , , , , , , ]; a.forEach(function(v,i,a){a[i]=v+;}); console.log(a); //[2, 3, 4, 5, 6, 7, 8, 9] .map():每个元素传递给指定函数,并返回该数组 , , , , , , , ]; console.log( b.map(function(x){return x*x}) ); //[1, 4, 9, 16,…