For example, I have the below constructor:
function MyType(){
this.someProp = 'someText';
};
I create a new instance:
var myVar = new MyType();
Now I want to check the type of this object...
console.log(typeof(myVar)); //object
console.log(myVar.toString()); //[object Object]
Is there any way for typeof or the default toString method to return MyType, instead of just object.
The above has been tested in Chrome console.
JSFiddle: http://jsfiddle.net/keqHN/