Answers for "combine array in javascript as key value pair"

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
0

merge 2 dictionaries with same keys javascript

const target = { a: [1], b: [2] };
const source = { a: [2], c: [5] };

const returnedTarget = Object.assign(target, source);

for(var date in source)
target[date] = [...target[date] || [],...source[date]]

console.log(target);
Posted by: Guest on September-13-2021

Code answers related to "combine array in javascript as key value pair"

Code answers related to "Javascript"

Browse Popular Code Answers by Language