On this page
Improve this Doc View Source angular.extend
- function in module ng
Overview
Extends the destination object dst by copying own enumerable properties from the src object(s) to dst. You can specify multiple src objects. If you want to preserve original objects, you can do so by passing an empty object as the target: var object = angular.extend({}, object1, object2).
Note: Keep in mind that angular.extend does not support recursive merge (deep copy). Use angular.merge for this.
Usage
angular.extend(dst, src);
Arguments
| Param | Type | Details |
|---|---|---|
| dst | Object |
Destination object. |
| src | Object |
Source object(s). |
Returns
Object |
Reference to |
© 2010–2020 Google, Inc.
Licensed under the Creative Commons Attribution License 3.0.
https://code.angularjs.org/1.8.2/docs/api/ng/function/angular.extend