Just curious:
- 4 instanceof Number => false
- new Number(4) instanceof Number => true?
Why is this? Same with strings:
'some string' instanceof Stringreturns falsenew String('some string') instanceof String=> trueString('some string') instanceof Stringalso returns false('some string').toString instanceof Stringalso returns false
For object, array or function types the instanceof operator works as expected. I just don't know how to understand this.
[re-opened to share new insights]
After testing I cooked up this functionality to be able to retrieve the type of any javascript object (be it primitive or not):
Object.prototype.typof = objType;
objType.toString = function(){return 'use [obj].typof()';};
function objType() {
var inp = String(this.constructor),
chkType = arguments[0] || null,
val;
function getT() {
return (inp.split(/\({1}/))[0].replace(/^\n/,'').substr(9);
}
return chkType
? getT().toLowerCase() === chkType.toLowerCase()
: getT();
}
Now you can check any type like this:
var Newclass = function(){}; //empty Constructor function
(5).typof(); //=> Number
'hello world'.typof(); //=> String
new Newclass().typof(); //=> Newclass
Or test if an object is of some type:
(5).typof('String'); //=> false
new Newclass().typof('Newclass') //=> true
[].typof('Arrray'); //=> true;
Number.prototype.isPrototypeOf(inp)- your way would also work if done correctly:inp.constructor === Number; it might fail, becauseconstructoris just a property of the prototype and can be overwritten! – Christoph Jan 23 '09 at 10:56obj['constructor'] = ???works! I'd suggest using mytypeOf()function; to treat primitives and wrapped primitives the same, useif(typeOf(x).toLowerCase() === 'string')– Christoph Jan 23 '09 at 12:40