re-pass REST params? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T22:44:15Z http://stackoverflow.com/feeds/question/1079658 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1079658/re-pass-rest-params 0 re-pass REST params? John Isaacks 2009-07-03T14:41:22Z 2009-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#1079831 2 Answer by Branden Hall for re-pass REST params? Branden Hall 2009-07-03T15:19:07Z 2009-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>