Answers for "javascript merge same keys in a multidimensional"

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
0

javascript merge multidimensional array

const _questions = _.map(this.sections, section => section.questions);
const questions  = Array.prototype.concat.apply([], _questions);
Posted by: Guest on February-11-2021

Code answers related to "javascript merge same keys in a multidimensional"

Code answers related to "Javascript"

Browse Popular Code Answers by Language