Created
February 5, 2014 02:21
-
-
Save htchaan/8816405 to your computer and use it in GitHub Desktop.
An improved version of the typeOf operator.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var toType = function(obj) { | |
return ({}).toString.call(obj).match(/\s([a-zA-Z]+)/)[1].toLowerCase() | |
} | |
/** | |
* http://javascriptweblog.wordpress.com/2011/08/08/fixing-the-javascript-typeof-operator/ | |
* toType({a: 4}); //"object" | |
* toType([1, 2, 3]); //"array" | |
* (function() {console.log(toType(arguments))})(); //arguments | |
* toType(new ReferenceError); //"error" | |
* toType(new Date); //"date" | |
* toType(/a-z/); //"regexp" | |
* toType(Math); //"math" | |
* toType(JSON); //"json" | |
* toType(new Number(4)); //"number" | |
* toType(new String("abc")); //"string" | |
* toType(new Boolean(true)); //"boolean" | |
**/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment