Created
October 13, 2012 10:50
-
-
Save mathiasverraes/3884138 to your computer and use it in GitHub Desktop.
get the class of a javascript object
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 getClass = function() { | |
var funcNameRegex = /function (.{1,})\(/; | |
var results = (funcNameRegex).exec((this).constructor.toString()); | |
return (results && results.length > 1) ? results[1] : ""; | |
}; | |
// define a class | |
function Animal() {} | |
// do this for all classes that need the getClass() method | |
Animal.prototype.getClass = getClass; | |
myDog = new Animal(); | |
assert(myDog.getClass() == 'Animal'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
http://stackoverflow.com/questions/332422/how-do-i-get-the-name-of-an-objects-type-in-javascript