Is there a JavaScript equivalent of Java's class.getName()?
|
|
|
Here is a hack that will do what you need - be aware that it modifies the Object's prototype, something people frown upon (usually for good reason)
Now, all of your objects will have the function, If you don't want to do that, here is a discussion on the various ways of determining types in JavaScript... I recently updated this to be a bit more exhaustive, though it is hardly that. Corrections welcome... Using the
|
|
|||
|
Well, I figured I might as well - the point of Stack Overflow is to be a bit like a wiki, and this is much more in line with that intent, I think. Regardless, I just wanted to be somewhat thorough. – Jason Bunting Dec 5 '08 at 20:47 |
||
|
It will work if you do it like this
function a() { this.a = 1;}
function b() { this.b = 2; }
b.prototype = new a(); // b inherits from a
b.prototype.constructor = b; // Correct way of prototypical inheritance
var f = new b(); // create new object with the b constructor
(f.constructor == b); // TRUE
(f.constructor == a); // FALSE – avok00 Jan 10 '11 at 15:36 |
||
|
Now, this is how most of the answers should be on StackOverflow.
(don't take length of the answer as a defining parameter, but the comprehensiveness) – Harsh Aug 12 '12 at 19:51 |
||
|
It's important to note that any techniques that inspect the object's constructor method (either with .toString() or .name) will fail to work if your Javascript has been minified with a tool like uglify, or the Rails asset pipeline. The minification renames the constructor, so you will end up with incorrect class names like n. If you're in this scenario, you may want to just manually define a className property on your objects and use that instead. – Gabe Martin-Dempesy Dec 28 '12 at 16:12 |
|
DO NOT USE THE CONSTRUCTOR PROPERTY. Read THIS first. The correct code is:
NB: According to specs, this function is the most reliable between different browsers. |
|||||||||||||
|
|
Jason Bunting's answer gave me enough of a clue to find what I needed:
So, for example, in the following piece of code:
|
|||||||||||||||
|
UpdateTo be precise, I think OP asked for a function that retrieves the constructor name for a particular object. In terms of Javascript,
Note: the below example is deprecated. A blog post linked by Christian Sciberras contains a good example on how to do it. Namely, by extending the Object prototype:
|
|||||||||
|
|
You can use the |
|||
|
|
You can use the "instanceof" operator to determine if an object is an instance of a certain class or not. If you do not know the name of an object's type, you can use its constructor property. The constructor property of objects, is a reference to the function that is used to initialize them. Example:
Now c1.constructor is a reference to the
|
||||
|
|
|
Here is a solution that I have come up with that solves the shortcomings of instanceof. It can check an object's types from cross-windows and cross-frames and doesn't have problems with primitive types.
isInstance requires two parameters: an object and a type. The real trick to how it works is that it checks if the object is from the same window and if not gets the object's window. Examples:
The type argument can also be a callback function which returns a constructor. The callback function will receive one parameter which is the window of the provided object. Examples:
One thing to keep in mind is that IE < 9 does not provide the constructor on all objects so the above test for NodeList would return false and also a isInstance(alert, "Function") would return false. |
|||
|
|
|
A little trick I use:
|
||||
|
The closest you can get is Edit, Jason's deleted his post for some reason, so just use Object's |
|||||||
|
|
Use
|
|||
|
|
|
Using Object.prototype.toString It turns out, as this post details, you can use Object.prototype.toString - the low level and generic implementation of toString - to get the type for all built-in types
One could write a short helper function such as
|
|||
|
|