遍歷簡(jiǎn)單的數(shù)組
let someArray=['12','12'];
// 第一個(gè)是數(shù)組中的值退客,第二個(gè)為數(shù)組索引叁熔,第三個(gè)為數(shù)組本身
someArray.forEach((title, idx, arr) =>{
console.log(idx + '-' + title+ '-' +arr);
});
遍歷數(shù)組對(duì)象
let objArray=[{"name":"121","age":"12"},{"name":"121","age":"13"}];
// 循環(huán)對(duì)象數(shù)組
objArray.forEach(({name,age})=>{
console.log(age);
});
遍歷嵌套數(shù)組
// 循環(huán)對(duì)象嵌套
var qtArray=[['1','2','3'],['1','3','3']];
qtArray.forEach(([word,cont,num])=>{
console.log(word);
});