2、map()
var arr = [1, 2, 3, 4];
arr.map((item, index, arr) = > {
return item * 10
//新数组为10,20,30,40...})
////map遍历数组,返回一个新数组,不改变原数组的值。...3、filter()
var arr = [1, 2, 3, 4];
arr.filter((item, index, arr) = > {
return item > 2
//新数组为...[3,4]
})
//filter过滤掉数组中不满足条件的值,返回一个新数组,不改变原数组的值。...//不改变原数组,返回计算的最终结果,从数组的第二项开始遍历。