I am trying to loop over a JavaScript object in ES6.
for (let [value, index] of object) {
do something with rest
if (index >= 1) {
// do s
Simply count the index:
let index = 0;
for (let value of object) {
//do something with rest
if (index >= 1) {
// do something with the third and following items
}
index++;
}
Or if you really want to use object destructuring ( i dont know why ) its a bit more complicated:
let entries = Object.entries(object);
for(let [index, [key, value]] of entries.entries()){
//...
}
or:
for(let [index,value] of Object.values(object).entries()){
//...
}
But i dont know why youre not using a simple forEach?:
Object.values(obj).forEach((value, index)=> /*...*/);