I created a Javascript Obj, but how can I get back the Class of that Javascript Obj?
I want something that similar to Java .getClass() method.
|
I created a Javascript Obj, but how can I get back the Class of that Javascript Obj? I want something that similar to Java |
|||||||||||
|
|
There's no exact counterpart to Java's Depending on what you need
A few examples:
|
|||||||||||||||
|
seems to work in all the typical cases I've tried. If the object is instantiated with It will also return "Number" for numbers, "Array" for arrays and "Function" for functions. In fact it seems to be quite reliable. The only case where it fails is if an object is created without a prototype, via Arguably, Note: Another advantage to this method is it works intuitively across DOM boundaries versus comparing the constructor objects directly or using Note 2: Oddly enough, this method appears to return the name of the base-most function used in a prototype chain, which is unfortunately not intuitive. For example if |
||||
|
|
|
This function returns either
|
|||
|
You can get a reference to the constructor function which created the object by using the constructor property:
If you need to confirm the type of an object at runtime you can use the instanceof operator:
|
|||||
|
|
To get the "pseudo class", you can get the constructor function, by
assuming the
and these two lines, together with:
will make If you want to get the class name as a string, I found the following working well: http://blog.magnetiq.com/post/514962277/finding-out-class-names-of-javascript-objects
It gets to the constructor function, converts it to string, and extracts the name of the constructor function. Note that |
||||
|
|
|
Javascript is a class-less languages: there are no classes that defines the behaviour of a class statically as in Java. JavaScript uses prototypes instead of classes for defining object properties, including methods, and inheritance. It is possible to simulate many class-based features with prototypes in JavaScript. |
|||
|
|
|
In javascript, there are no classes, but I think that you want the constructor name and |
||||
|
I find code:
|
|||
|
|