JS中的 map, filter, some, every, forEach, for in, for of 用法总结和区别 :https://blog.csdn.net/hyupeng1006/article/details/79877710 本文链接:https://blog.csdn.net/hyupeng1006/article/details/79877710函数简述:map():返回一个新的Array,每个元素为调用func的结果filter():返回符合func条件的元素数组fi…
1.map 有返回值,返回一个新的数组,每个元素为调用func的结果. let list = [1, 2, 3, 4, 5]; let other = list.map((d, i) => { return d * 2; }) console.log(other) 2.filter 有返回值,返回一个符合func条件的元素数组 let list = [1, 2, 3, 4, 5]; let other = list.filter((d, i) => { return d % 2; }) con…