EVOLUTION-MANAGER
Edit File: angular.extend.html
<a href='https://github.com/angular/angular.js/edit/v1.3.x/src/Angular.js?message=docs(angular.extend)%3A%20describe%20your%20change...#L326' class='improve-docs btn btn-primary'><i class="glyphicon glyphicon-edit"> </i>Improve this Doc</a> <a href='https://github.com/angular/angular.js/tree/v1.3.9/src/Angular.js#L326' class='view-source pull-right btn btn-primary'> <i class="glyphicon glyphicon-zoom-in"> </i>View Source </a> <header class="api-profile-header"> <h1 class="api-profile-header-heading">angular.extend</h1> <ol class="api-profile-header-structure naked-list step-list"> <li> - function in module <a href="api/ng">ng</a> </li> </ol> </header> <div class="api-profile-description"> <p>Extends the destination object <code>dst</code> by copying own enumerable properties from the <code>src</code> object(s) to <code>dst</code>. You can specify multiple <code>src</code> objects. If you want to preserve original objects, you can do so by passing an empty object as the target: <code>var object = angular.extend({}, object1, object2)</code>. Note: Keep in mind that <code>angular.extend</code> does not support recursive merge (deep copy).</p> </div> <div> <h2 id="usage">Usage</h2> <p><code>angular.extend(dst, src);</code></p> <section class="api-section"> <h3>Arguments</h3> <table class="variables-matrix input-arguments"> <thead> <tr> <th>Param</th> <th>Type</th> <th>Details</th> </tr> </thead> <tbody> <tr> <td> dst </td> <td> <a href="" class="label type-hint type-hint-object">Object</a> </td> <td> <p>Destination object.</p> </td> </tr> <tr> <td> src </td> <td> <a href="" class="label type-hint type-hint-object">Object</a> </td> <td> <p>Source object(s).</p> </td> </tr> </tbody> </table> </section> <h3>Returns</h3> <table class="variables-matrix return-arguments"> <tr> <td><a href="" class="label type-hint type-hint-object">Object</a></td> <td><p>Reference to <code>dst</code>.</p> </td> </tr> </table> </div>