vote up 1 vote down star

I want to execute method: bar() when method foo() is done.

This could be done like this:

function foo() {
  //....
  bar();
}

But there is surely some way to execute bar() like a callback to foo()? I have been looking in prototype API, but so far I only found ways to bind callbacks to HTML-elements...

flag

1 Answer

vote up 8 vote down check
function foo(callback) {
   // ...
   callback();
}

And then you call foo like this:

foo(bar);
link|flag
you might also want to check typeof callback to ensure it's a function – Russ Cam Jul 22 at 11:58
Thanks, whats the syntax when doing this inside of class created with Class.create(); – Andersson Jul 22 at 12:19
Or another way - inside of function foo, assign callback = callback || function() {}; that way if callback is null or undefined, an empty function will be assigned and executed instead. – Russ Cam Jul 23 at 8:38

Your Answer

Get an OpenID
or

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