forEach(函数)遍历数组

var arr=[10,20,30,40,50];
arr.forEach(function (ele, index) {
console.log(ele+'------');
});

你可能感兴趣的:(forEach(函数)遍历数组)