Merge the properties
The target object
Rest
The objects to be merged
extend({a: 1}, {b: 2}, {c: 3}) // {a: 1, b: 2, c: 3}extend({a: 1}, {a: 2}, {a: 3}) // {a: 3} Copy
extend({a: 1}, {b: 2}, {c: 3}) // {a: 1, b: 2, c: 3}extend({a: 1}, {a: 2}, {a: 3}) // {a: 3}
Generated using TypeDoc
Merge the properties