vote up 8 vote down star
2

How do you tell if a function in Javascript is defined?

I want to do something like

function something_cool(text, callback){
    alert(text);
    if( callback != null ){ callback(); };
}

but that gets me a 'callback is not a function' error when callback is not defined.

flag

10 Answers

vote up 10 vote down check
typeof(callback) == "function"
link|flag
Not a problem as long as you like magic strings in your code. – Jason Bunting Dec 18 at 0:21
vote up 7 vote down

All of the current answers use a "magic" string - this does not:

function isFunction(possibleFunction) {
  return (typeof(possibleFunction) == typeof(Function));
}

Personally, I try to reduce the number of strings hanging around in my code...


Also, while I am aware that typeof is an operator and not a function, there is little harm in using syntax that makes it appear as the latter.

link|flag
Everything about this answer is 100% correct! – Gary Willoughby Jul 22 at 22:30
vote up 5 vote down

typeof is an operator, not a function, it does not require brackets/braces (although they also don't hurt anything).

if (typeof yourFunction === 'function') { ... }
link|flag
vote up 1 vote down

try

if (typeof(callback) == 'function')
link|flag
vote up 1 vote down

typeof(callback) == "function"

link|flag
vote up 1 vote down
function something_cool(text, callback){
    alert(text);
    if(typeof(callback)=='function'){ 
        callback(); 
    };
}
link|flag
vote up 1 vote down

if (callback && typeof(callback) == "function)

Note that callback (by itself) evaluates to false if it is undefined, null, 0, or false. Comparing to null is overly specific.

link|flag
vote up 1 vote down
if ('function' === typeof callback) ...
link|flag
vote up 0 vote down

try:

if (!(typeof(callback)=='undefined')) {...}
link|flag
vote up 0 vote down

self[callback] also works, but only on FF, this if what i'm using:

function isfn(x) { if (eval("typeof "+x+" == 'function'")) { return true; } else { return false; } }

link|flag
As a best practice and general rule, never use "eval" unless you have some insanely good reasons. Very bad idea, very bad. No room here to tell you why, but you should go read up on it. – Jason Bunting Aug 27 at 19:11

Your Answer

Get an OpenID
or

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