extend()

Adds extra properties to an object based on the properties owned by other specified objects.

This function is valid in v2.0.0 to v2.24.3. This function has been downloaded 63 times.

Parameters

{Object} objToExtend
Object to be modified.
{…Object} objPropsX
One or more arguments where each one's properties will be added to objToExtend.

Returns

{Object}
A reference to objToExtend.

Required Function

This function directly requires the following function which is included automatically:

  • has()
    Every object descended from Object inherits the hasOwnProperty method. This method can be used to determine whether an object has the specified property as a direct property of that object; unlike the in operator, this method does not check down the object's prototype chain.