1.for循环
最常用的一种循环,常用于普通数组的遍历
场景1:普通数组
var arr=["苹果","香蕉","雪梨"];
for(var i=0;i<arr.length;i++){
console.log(arr[i]);//打印 苹果 香蕉 雪梨
}
场景2:数组里面装对象
var arr=[{
name:"hu",
age:11
},
{
name:"huww",
age:20
}];
for(var i=0;i<arr.length;i++){
console.log(arr[i]);
console.log(arr[i].name);
console.log(arr[i].age);
}
2.forEach循环
常用于遍历对象,也就是for循环中的场景2
myArray.forEach(function (value) {
console.log(value);
});
实际上forEach有三个参数 分别为 值 下标 数组本身 于是我们有
[].forEach(function(value, index, array) {
// …
});
对比jQuery中的$.each方法:
$.each([], function(index, value, array) {
// …
});
来源:CSDN
作者:smallhuahua
链接:https://blog.csdn.net/qq_38367703/article/details/100090830