var arr=[1,2,3,4];
① forEach
//forEach是ES5中操作数组的一种方法,主要功能是遍历数组
arr.forEach(function(value,index,array){ //forEach方法中的function回调有三个参数:第一个参数是遍历的数组内容,第二个参数是对应的数组索引,第三个参数是数组本身
console.log("arr["+index+"]="+value);
})
②for-in 推荐使用
//
for(var index in arr){
console.log(arr[index]);
}
③for-of
for(var value of arr){
console.log(value);
}