var arr = [1,3,2,5,3]; //forEach 两个参数,第一个为数组内容,第二个为数组下标arr.forEach(function(item,index) { console.log(index + ' ' +item);}) //map 遍历数组进行计算操作var newArr = arr.map(function(item,index) { return item*2;})console.log(newArr); //filter 遍历数组并返回判断结果为true的内容v…