How do you tell if a function in JavaScript is defined?
I want to do something like this
function something_cool(text, callback) { alert(text); if( callback != null ) callback(); }
But it gets me a
callback is not a function
error when callback is not defined.
1 Answer