javascript遍历方法

  |   0 评论   |   0 浏览

数组的遍历

  • forEach: 没有返回值,只是遍历数组
  • map: 返回数组的每一项,但不改变原数组,相当于返回原数组的一个修改过的副本。

forEach

array.forEach(function(currentValue, index, currentArray){ } , thisValue);

map

var newArray = array.map(function(currentValue, index, currentArray){}, thisValue);

对象的遍历

                Object.keys(res).forEach(function (key) {
                    console.log(key, res[key]);
                });