AngularJS: API: ng/function/angular.extend


angular.extend

  1. - function in module ng

Extends the destination object dst by copying all of the properties from the src object(s) to dst. You can specify multiple src objects.

Usage

angular.extend(dst, src);

Arguments

Param Type Details
dst Object

Destination object.

src Object

Source object(s).

Returns

Object

Reference to dst.