Is there a JavaScript equivalent of Java's class.getName()?
feedback
|
|
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 |
||
Re-iterating an answer below --- your extension to the Object prototype does not work in IE8 - does anyone know what would work in IE8? – Adam Aug 17 '10 at 14:49 |
|||
@Adam - well, I am going to have to disagree with you because I just tested it in IE 8, because of your comment, and it works fine for me. Not sure what you are doing wrong, but it works. – Jason Bunting Aug 24 '10 at 16:46 |
|||
|
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 |
|
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. | |||||||||||
feedback
|
|
Jason Bunting's answer gave me enough of a clue to find what I needed:
So, for example, in the following piece of code:
| |||||||||||||||
feedback
|
|
A little trick I use:
| |||||
feedback
|
|
A blog post linked by Christian Sciberras contains a good example on how to do it. Namely, by extending the Object prototype:
| |||
|
feedback
|
|
You can use the | |||
feedback
|
|
The closest you can get is Edit, Jason's deleted his post for some reason, so just use Object's | |||||||
feedback
|
|
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
| |||||
feedback
|
|
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. | |||
|
feedback
|
|
Use
| |||
|
feedback
|
|
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
| |||
|
feedback
|