js for...of loop with index All In One
js for...of loop with index All In One
const ids = ['id1','id2','id3'];
for(const [index, value] of ids.entries()){
console.log(index, value);
}
const ids = ['id1','id2','id3'];
for(const [index, value] of ids.entries()){
console.log(index, value);
}
// 0 "id1"
// 1 "id2"
// 2 "id3"
ids.entries();
// Array Iterator {}__proto__: Array Iterator
for(const item of ids.entries()){
console.log(item);
}
// (2) [0, "id1"]
// (2) [1, "id2"]
// (2) [2, "id3"]
https://reactgo.com/javascript-get-index-for-of-loop/
refs
js & for & for of & for in & forEach, break
https://www.cnblogs.com/xgqfrms/p/12021774.html
©xgqfrms 2012-2020
www.cnblogs.com/xgqfrms 发布文章使用:只允许注册用户才可以访问!
原创文章,版权所有©️xgqfrms, 禁止转载 🈲️,侵权必究⚠️!
本文首发于博客园,作者:xgqfrms,原文链接:https://www.cnblogs.com/xgqfrms/p/Who-Are-You.html
未经授权禁止转载,违者必究!