Getting a better understanding of callback functions in JavaScript - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T01:56:54Z http://stackoverflow.com/feeds/question/483073 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/483073/getting-a-better-understanding-of-callback-functions-in-javascript 1 Getting a better understanding of callback functions in JavaScript hal10001 2009-01-27T11:36:48Z 2009-01-27T11:52:30Z <p>I understand passing in a function to another function as a callback and having it execute, but I'm not understanding the best implementation to do that. I'm looking for a very basic example, like this:</p> <pre><code>var myCallBackExample = { myFirstFunction : function( param1, param2, callback ) { // Do something with param1 and param2. if ( arguments.length == 3 ) { // Execute callback function. // What is the "best" way to do this? } }, mySecondFunction : function() { myFirstFunction( false, true, function() { // When this anonymous function is called, execute it. }); } }; </code></pre> <p>In myFirstFunction, if I do return new callback(), then it works and executes the anonymous function, but that doesn't seem like the correct approach to me.</p> http://stackoverflow.com/questions/483073/getting-a-better-understanding-of-callback-functions-in-javascript/483089#483089 0 Answer by annakata for Getting a better understanding of callback functions in JavaScript annakata 2009-01-27T11:43:31Z 2009-01-27T11:43:31Z <p>Callbacks are about signals and "new" is about creating object instances. </p> <p>In this case it would be even more appropriate to execute just "callback();" than "return new callback()" because you aren't doing anything with a return value anyway.</p> <p><em>(And the arguments.length==3 test is really clunky, fwiw, better to check that callback param exists and is a function.)</em></p> http://stackoverflow.com/questions/483073/getting-a-better-understanding-of-callback-functions-in-javascript/483090#483090 4 Answer by krosenvold for Getting a better understanding of callback functions in JavaScript krosenvold 2009-01-27T11:43:35Z 2009-01-27T11:43:35Z <p>You can just say</p> <pre><code>callback(); </code></pre> <p>Alternately you can use the "call" method if you want to adjust the value of "this" within the callback.</p> <pre><code>callback.call( newValueForThis); </code></pre> <p>Isnide the function "this" would be whatever "newValueForThis" is.</p> http://stackoverflow.com/questions/483073/getting-a-better-understanding-of-callback-functions-in-javascript/483118#483118 2 Answer by Ionut G. Stan for Getting a better understanding of callback functions in JavaScript Ionut G. Stan 2009-01-27T11:52:30Z 2009-01-27T11:52:30Z <p>There are 3 main possibilities to execute a function:</p> <pre><code>var callback = function(x, y) { // "this" may be different depending how you call the function alert(this); }; </code></pre> <ol> <li>callback(argument_1, argument_2);</li> <li>callback.call(some_object, argument_1, argument_2);</li> <li>callback.apply(some_object, [argument_1, argument_2]);</li> </ol> <p>The method you choose depends whether:</p> <ol> <li>You have the arguments stored in an Array or as distinct variables.</li> <li>You want to call that function in the context of some object. In this case, using the "this" keyword in that callback would reference the object passed as argument in call() or apply(). If you don't want to pass the object context, use null or undefined. In the latter case the global object would be used for "this".</li> </ol> <p>Docs for <a href="https://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Global_Objects/Function/call" rel="nofollow">Function.call</a>, <a href="https://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Objects/Function/apply" rel="nofollow">Function.apply</a></p>