Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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:

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.
    	});
    }
};

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.

share|improve this question
Correct in what sense? Typically callbacks are used for event handlers--most notably Ajax calls, which are asynchronous--basically things where you don't know when (or if) a resposne will come. – cletus Jan 27 '09 at 11:41
2  
by the way arguments are array like but not array , so you can't do argument.length but you can convert it into an array using slice method... – paul Mar 26 '11 at 0:52
@paul, although you are right that arguments is not an array, you can still reference its length as arguments.length -- give it a try. This property refers to the number of arguments actually passed in, and not necessarily the number of parameters in the function signature. – hotshot309 Jun 14 '11 at 21:32

6 Answers

up vote 83 down vote accepted

You can just say

callback();

Alternately you can use the call method if you want to adjust the value of this within the callback.

callback.call( newValueForThis);

Inside the function this would be whatever newValueForThis is.

share|improve this answer

You should check if the callback exists, and is an executable function:

if (callback && typeof(callback) === "function") {
    // execute the callback, passing parameters as necessary
    callback();
}

A lot of libraries (jQuery, dojo, etc.) use a similar pattern for their asynchronous functions, as well as node.js for all async functions (nodejs usually passes error and data to the callback). Looking into their source code would help!

share|improve this answer

There are 3 main possibilities to execute a function:

var callback = function(x, y) {
    // "this" may be different depending how you call the function
    alert(this);
};
  1. callback(argument_1, argument_2);
  2. callback.call(some_object, argument_1, argument_2);
  3. callback.apply(some_object, [argument_1, argument_2]);

The method you choose depends whether:

  1. You have the arguments stored in an Array or as distinct variables.
  2. 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".

Docs for Function.call, Function.apply

share|improve this answer

Callbacks are about signals and "new" is about creating object instances.

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.

(And the arguments.length==3 test is really clunky, fwiw, better to check that callback param exists and is a function.)

share|improve this answer

the proper implementation would be:

if( callback ) callback();

this makes the callback parameter optional..

share|improve this answer
function checkCallback(cb)
{
    if(cb || cb!='')
    {
        if(typeof window[cb] === 'undefined') alert('Callback function not found.');
        else window[cb].call(this,Arg1, Arg2);
    }
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.