-
Notifications
You must be signed in to change notification settings - Fork 3
concat
Subhajit Sahu edited this page Jun 11, 2020
·
12 revisions
Combines entries from objects, preferring last. 🏃 📼 📦 🌔 📒
object.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 }