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

Suppose I have any variable, which is defined as follows:

var a = function(){/* Statements */};

I want a function which checks if the type of the variable is function-like. i.e. :

function foo(v){if(v is function type?){/* do something */}};
foo(a);

How can I check if the variable 'a' is of type function in the way defined above?

share|improve this question
2  
see here The type of a function is "function". – diEcho May 14 '11 at 5:39

5 Answers

up vote 41 down vote accepted

Sure underscores is more efficient, but the best way to check, when efficiency isn't an issue, is written on underscore's page linked by @Paul Rosania.

function isFunctionA(object) {
 return object && getClass.call(object) == '[object Function]';
}

Thus, the final isFunction function is as follows:

function isFunction(functionToCheck) {
 var getType = {};
 return functionToCheck && getType.toString.call(functionToCheck) === '[object Function]';
}

typeof should only be used for checking if variables or properties are undefined.

For instance,

if (typeof thing !== "undefined") {
  // do something with global property "thing"
}
share|improve this answer
There might be someone who has made more extensive research on the matter, but have a look at the results of revision 4 of the jsperf with simple "result verification". isFunctionA shows an implementation difference compared to the other methods. – Joel Purra Feb 2 '12 at 18:41
With updated performance tests it looks like there's a huge speed difference depending on your browser. In Chrome typeof(obj) === 'function' appears to be the fastest by far; however, in Firefox obj instanceof Function is the clear winner. – Justin Warkentin Oct 3 '12 at 18:04
if (typeof(v) == "function") {
// do something
}
share|improve this answer
4  
Just watch out for a few things like typeof Object, typeof Date, and typeof String, which all return 'function' too. – Dave Ward May 14 '11 at 6:21
31  
@Dave, I'm not sure what the problem is since those are functions. – Matthew Crumley May 14 '11 at 15:41
3  
typeof(Date) and others are functions, so no problem. x= new Date(); typeof(x); // "Object" so all is fine. – gcb Jul 26 '12 at 18:06

Underscore.js uses a more elaborate but highly performant test:

_.isFunction = function(obj) {
  return !!(obj && obj.constructor && obj.call && obj.apply);
};

See: http://jsperf.com/alternative-isfunction-implementations

EDIT: updated tests suggest that typeof might be faster, see http://jsperf.com/alternative-isfunction-implementations/4

share|improve this answer
Is there any particular reason to use this approach than typof? – sv_in May 14 '11 at 6:13
Underscore's version is much faster in most browsers. See: jsperf.com/alternative-isfunction-implementations – Paul Rosania May 14 '11 at 6:16
2  
I sure do like underscore, simple but powerful. That said, its probably worth noting that this implementation could be spoofed by an object with those attributes. – studgeek Aug 26 '11 at 18:57
3  
@PaulRosania Stumbled upon these performance tests earlier today, and updated them with verification plus more test data as revision 4 - please run it to increase browser test coverage. It's slower in operations per second (due to the many tests), but it also shows one implementation difference (open your javascript console and reload page, there might be logged error messages). Note: Revision 3 added isFunctionD (based on only typeof == "function") - and it seems to be much faster than Underscore's "fast" version. – Joel Purra Feb 2 '12 at 18:35
1  
This answer is a bit misleading now, as Underscore.js is now on revision 12, not the above-referenced revision 4, of its test of alternative isFunction() implementations. It currently uses something very close to what dandean suggested. – Jonathan Eunice May 4 at 3:09
show 1 more comment

@grandecomplex: There's a fair amount of verbosity to your solution. It would be much clearer if written like this:

function isFunction(x) {
  return Object.prototype.toString.call(x) == '[object Function]';
}
share|improve this answer
Object.prototype.toString.call is useful for other javascript types your interested in. You can even check against null or undefined which makes it very powerful. – Jason Foglia Nov 29 '12 at 15:43

Try instanceof: It seems that all functions inherit from the "Function" class:

// Test data
var f1 = function () { alert("test"); }
var o1 = { Name: "Object_1" };
F_est = function () { };
var o2 = new F_est();

// Results
alert(f1 instanceof Function); // true
alert(o1 instanceof Function); // false
alert(o2 instanceof Function); // false
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.