Answers for "go through array og object array"

1

javascript loop through array of objects

var arr = [{id: 1},{id: 2},{id: 3}];

for (var elm of arr) {
  console.log(elm);
}
Posted by: Guest on October-04-2020
0

javascript loop through array of objects

//Only to be used if you need the numbers
var array = new Array(item1,item2,item3)

for(i=0;i<array.length;i++){
  if(i==2){
    console.log(array[i])
  }
}
Posted by: Guest on March-07-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language