爱听歌月饼

文章
5
资源
0
加入时间
2年10月21天

js map() filter()

map()可以理解为是一种映射的关系用法array.map(function);举例子:var array = [1, 2, 3, 4, 5, 6];function double(x) { return x * x;}var newArray = array.map(double);console.log("第三个"+newArray[2]);//9filter()可以理解为是...