SyntaxFix
Write A Post
Hire A Developer
Questions
merge(a, b, key) { let merged = []; a.forEach(aitem => { let found = b.find( bitem => aitem[key] === bitem[key]); merged.push(found? found: aitem); }); return merged; }