forked from angular/code.angularjs.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathangular.extend.html
19 lines (19 loc) · 907 Bytes
/
angular.extend.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<h1>angular.extend</h1>
<div class="angular-extend"><fieldset class="workInProgress"><legend>Work in Progress</legend>
This page is currently being revised. It might be incomplete or contain inaccuracies.</fieldset>
<h2>Description</h2>
<div class="description"><p>Extends the destination object <code>dst</code> by copying all of the properties from the <code>src</code> objects to
<code>dst</code>. You can specify multiple <code>src</code> objects.</p></div>
<h2>Dependencies</h2>
<ul class="dependencies"></ul>
<h2>Usage</h2>
<div class="usage"><div ng:non-bindable=""><pre class="brush: js; html-script: true;">angular.extend(dst, src);</pre>
</div>
<h3>Parameters</h3>
<ul class="parameters"><li><code ng:non-bindable="">dst – {Object} – </code>
<p>The destination object.</p></li>
<li><code ng:non-bindable="">src – {...Object} – </code>
<p>The source object(s).</p></li>
</ul>
</div>
</div>