Answers for "array of biject having same keys combine keys and show values in array in javascript"

0

js combine 2 array to object key value

var columns = ["Date", "Number", "Size", "Location", "Age"];
var rows = ["2001", "5", "Big", "Sydney", "25"];
var result =  rows.reduce(function(result, field, index) {
  result[columns[index]] = field;
  return result;
}, {})

console.log(result);
Posted by: Guest on July-06-2020

Code answers related to "array of biject having same keys combine keys and show values in array in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language