Answers for "looping array matrix di javascript"

3

nested array loop in javascript

let chunked = [[1,2,3], [4,5,6], [7,8,9]];

for(let i = 0; i < chunked.length; i++) {
  
   for(let j = 0; j < chunked[i].length; j++) {
     
      console.log(chunked[i][j]);
   }
}
Posted by: Guest on June-13-2020
0

javascript loop over three-dimensional array

var items = [[['firstName', 'Joe'], ['lastName', 'Blow'], ['age', 42], ['role', 'clerk']], [['firstName', 'Mary'], ['lastName', 'Jenkins'], ['age', 36], ['role', 'manager']]];

var result = [];
// first loop through items
items.forEach(function(item)
{
   var obj = {};
   // then loop through properties
   item.forEach(function (value)
   {
      // then set property and value
      obj[value[0]] = value[1];
   });

   // once all is done push the object
   result.push(obj);
});

console.log(result);
Posted by: Guest on April-22-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language