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
|
|
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
|
|
A blog post linked by Christian Sciberras contains a good example on how to do it. Namely, by extending the Object prototype:
| |||
|
feedback
|
|
Use
| |||
|
feedback
|
|
this.constructor is not a valid object in IE8, so every implementation like Object.prototype.getName is not valid. | |||
feedback
|