Back

$.utils.extend( target, [additionalObjects...] )

Extend a target object with additional objects

This mutates the target object

Params

target{Object}The target object to be extended
additionalObjects...{Object} [optional]One or more additional objects containing properties to be merged onto the target

Returns

DollarJS (chainable)

Examples

$.utils.extend({ abc: 123 }, { abc: 456 }, { def: 789 })