How do I get the name of an object's type in Javascript? - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T01:53:22Zhttp://stackoverflow.com/feeds/question/332422http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/332422/how-do-i-get-the-name-of-an-objects-type-in-javascript10How do I get the name of an object's type in Javascript?Ewen Cartwright2008-12-01T22:06:15Z2009-07-28T09:36:52Z
<p>Is there a javascript equivalent of Java's <code>class.getName()</code>?</p>
http://stackoverflow.com/questions/332422/how-do-i-get-the-name-of-an-objects-type-in-javascript/332429#33242914Answer by Jason Bunting for How do I get the name of an object's type in Javascript?Jason Bunting2008-12-01T22:09:09Z2008-12-05T18:07:28Z<p>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)</p>
<pre><code>Object.prototype.getName = function() {
var funcNameRegex = /function (.{1,})\(/;
var results = (funcNameRegex).exec((this).constructor.toString());
return (results && results.length > 1) ? results[1] : "";
};
</code></pre>
<p>Now, all of your objects will have the function, <code>getName()</code>, that will return the name of the constructor as a string. I have tested this in FF3 and IE7, I can't speak for other implementations.</p>
<p>If you don't want to do that, here is a discussion on the various ways of determining types in JavaScript...</p>
<p><hr /></p>
<p>I recently updated this to be a bit more exhaustive, though it is hardly that. Corrections welcome...</p>
<h2>Using the <code>constructor</code> property...</h2>
<p>Every object has a value for its <code>constructor</code> property, but depending on how that object was constructed as well as what you want to do with that value, it may or may not be useful. </p>
<p>Generally speaking, you can use the <code>constructor</code> property to test the type of the object like so:</p>
<pre><code>var myArray = [1,2,3];
(myArray.constructor == Array); // true
</code></pre>
<p>So, that works well enough for most needs. That said...</p>
<h3>Caveats</h3>
<p>An example where it isn't as obvious is where you use prototypical inheritance:</p>
<pre><code>function a() { this.a = 1;}
function b() { this.b = 2; }
b.prototype = new a(); // b inherits from a
</code></pre>
<p>Things now don't work as you might expect them to:</p>
<pre><code>var f = new b(); // create new object with the b constructor
(f.constructor == b); // false
(f.constructor == a); // true
</code></pre>
<p>So, you might get unexpected results if the object your testing has a different object set as its prototype. There are ways around this outside the scope of this discussion.</p>
<p>There are other uses for the <code>constructor</code> property, some of them interesting, others not so much; for now we will not delve into those uses since it isn't relevant to this discussion.</p>
<p><hr /></p>
<h2>Using the <code>instanceof</code> operator...</h2>
<p>The <code>instanceof</code> operator is a clean way of testing object type as well, but has its own potential issues, just like the <code>constructor</code> property.</p>
<pre><code>var myArray = [1,2,3];
(myArray instanceof Array); // true
(myArray instanceof Object); // true
</code></pre>
<p><hr /></p>
<h2>Using the <code>name</code> property of the <code>constructor</code> property...</h2>
<h3>Does NOT work in IE</h3>
<p>Using <code>myObjectInstance.constructor.name</code> will give you a string containing the name of the constructor function used, but is subject to the caveats about the constructor property that were mentioned earlier.</p>
<p><hr /></p>
<h2>Caveats for all...</h2>
<p>All of these are subject to one potential problem, and that is the question of how the object in question was constructed. Here are various ways of building objects and the values that the different methods of type checking will return:</p>
<pre><code>// using a named function:
function Foo() { this.a = 1; }
var obj = new Foo();
(obj instanceof Object); // true
(obj instanceof Foo); // true
(obj.constructor == Foo); // true
(obj.constructor.name == "Foo"); // true
// let's add some prototypical inheritance
function Bar() { this.b = 2; }
Foo.prototype = new Bar();
obj = new Foo();
(obj instanceof Object); // true
(obj instanceof Foo); // true
(obj.constructor == Foo); // false
(obj.constructor.name == "Foo"); // false
// using an anonymous function:
obj = new (function() { this.a = 1; })();
(obj instanceof Object); // true
(obj.constructor == obj.constructor); // true
(obj.constructor.name == ""); // true
// using an anonymous function assigned to a variable
var Foo = function() { this.a = 1; };
obj = new Foo();
(obj instanceof Object); // true
(obj instanceof Foo); // true
(obj.constructor == Foo); // true
(obj.constructor.name == ""); // true
// using object literal syntax
obj = { foo : 1 };
(obj instanceof Object); // true
(obj.constructor == Object); // true
(obj.constructor.name == "Object"); // true
</code></pre>
<p>While not all permutations are present in this set of examples, hopefully there are enough to provide you with an idea about how messy things might get depending on your needs. Don't assume anything, if you don't understand exactly what you are after, you may end up with code breaking where you don't expect it to because of a lack of grokking the subtleties.</p>
<h3>NOTE:</h3>
<p>Discussion of the <code>typeof</code> operator may appear to be a glaring omission, but it really isn't useful in helping to identify whether an object is a given type, since it is very simplistic. Understanding where <code>typeof</code> is useful is important, but I don't currently feel that it is terribly relevant to this discussion. My mind is open to change though. :)</p>
http://stackoverflow.com/questions/332422/how-do-i-get-the-name-of-an-objects-type-in-javascript/332434#3324341Answer by Greg for How do I get the name of an object's type in Javascript?Greg2008-12-01T22:13:00Z2008-12-01T22:13:00Z<p>You can use the <a href="https://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Operators/Special_Operators/instanceof_Operator" rel="nofollow"><code>instanceof</code></a> operator to see if an object is an instance of another, but since there are no classes, you can't get a class name.</p>
http://stackoverflow.com/questions/332422/how-do-i-get-the-name-of-an-objects-type-in-javascript/332445#3324456Answer by Ewen Cartwright for How do I get the name of an object's type in Javascript?Ewen Cartwright2008-12-01T22:21:14Z2008-12-01T22:35:50Z<p>Jason Bunting's answer gave me enough of a clue to find what I needed:</p>
<pre><code><<Object instance>>.constructor.name
</code></pre>
<p>So, for example, in the following piece of code:</p>
<pre><code>function MyObject() {}
var myInstance = new MyObject();
</code></pre>
<p><code>myInstance.constructor.name</code> would return <code>"MyObject"</code>.</p>
http://stackoverflow.com/questions/332422/how-do-i-get-the-name-of-an-objects-type-in-javascript/332447#3324471Answer by sblundy for How do I get the name of an object's type in Javascript?sblundy2008-12-01T22:22:04Z2008-12-01T22:22:04Z<p>The closest you can get is <a href="https://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Operators/Special_Operators/typeof_Operator" rel="nofollow"><code>typeof</code></a>, but it only returns "object" for any sort of custom type. For those, see <a href="http://stackoverflow.com/questions/332422/how-do-i-get-the-name-of-an-object-in-javascript#332429">Jason Bunting</a>.</p>
<p>Edit, Jason's deleted his post for some reason, so just use Object's <code>constructor</code> property.</p>
http://stackoverflow.com/questions/332422/how-do-i-get-the-name-of-an-objects-type-in-javascript/335025#335025-1Answer by farzad for How do I get the name of an object's type in Javascript?farzad2008-12-02T18:52:15Z2008-12-02T18:52:15Z<p>you can use the "instanseof" operator to determine if an object is an instanse of a certain class or not. if you do not know the name of and object's type, you can use it's constructor property. the constructor property of objects, is a reference to the function that is used to initialize them. example:</p>
<pre><code>function Circle (x,y,radius) {
this._x = x;
this._y = y;
this._radius = raduius;
}
var c1 = new Circle(10,20,5);
</code></pre>
<p>now c1.constructor is a reference to the Circle() function.
you can alsow use the typeof operator. but the typeof operator shows limited information. one solution is to use the toString() method of the Object global object. for example if you have an object, say myObject. you can use the toString() method of the global Object to determine the type of the class of myObject. use this:</p>
<pre><code>Object.prototype.toString.apply(myObject);
</code></pre>
http://stackoverflow.com/questions/332422/how-do-i-get-the-name-of-an-objects-type-in-javascript/1193005#11930050Answer by Lorenzo Ruggeri for How do I get the name of an object's type in Javascript?Lorenzo Ruggeri2009-07-28T09:36:52Z2009-07-28T09:36:52Z<p>this.constructor is not a valid object in IE8, so every implementation like Object.prototype.getName is not valid.</p>