re-pass REST params? - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T22:44:15Zhttp://stackoverflow.com/feeds/question/1079658http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1079658/re-pass-rest-params0re-pass REST params?John Isaacks2009-07-03T14:41:22Z2009-07-03T15:19:07Z
<p>Say I have two functions that expect ...rest parameters</p>
<pre><code>private function a(...myParams):void
{
trace(myParams.length); // returns 3 parameters 1,2,3
b(myParams);
}
private function b(...myParams):void
{
trace(myParams.length); // returns 1 parameter (array) [1,2,3]
}
a(1,2,3);
</code></pre>
<p>The function <strong>a</strong> gets an array of parameters 1,2,3 but when it passes them to function <strong>b</strong>, it passes them as 1 parameter (an array containing the 3). Is there a way to pass them as 3 separate parameters instead of an array?</p>
http://stackoverflow.com/questions/1079658/re-pass-rest-params/1079831#10798312Answer by Branden Hall for re-pass REST params?Branden Hall2009-07-03T15:19:07Z2009-07-03T15:19:07Z<p>Yes, use the apply method that all functions have (functions are objects too!). So, rather than this:</p>
<pre><code>b(myParams);
</code></pre>
<p>You'll do this:</p>
<pre><code>b.apply(this, myParams);
</code></pre>