-
Notifications
You must be signed in to change notification settings - Fork 3
concat
Subhajit Sahu edited this page Dec 8, 2022
·
12 revisions
Combine entries from objects, preferring last.
function concat(...xs)
// xs: objects
const object = require('extra-object');
var x = {a: 1, b: 2};
var y = {c: 3, d: 4};
object.concat(x, y);
// → { a: 1, b: 2, c: 3, d: 4 }
var z = {d: 40, e: 50};
object.concat(x, y, z);
// → { a: 1, b: 2, c: 3, d: 40, e: 50 }