typeof
Let’s talk about typeof first. The first thing to note is that the typeof method returns a string to represent the type of data.
typeof is a unary operation, placed before an operand, and the operand can be of any type.
The return value is a string that describes the type of the operand. Typeof generally can only return the following results:
number, boolean, string, function, object, undefined. We can use typeof to get whether a variable exists, such as if(typeof a!="undefined"){alert("ok")} instead of using if(a) because if a does not exist (undeclared), it will If an error occurs, using typeof for special objects such as Array and Null will always return object. This is the limitation of typeof.
Grammar explanation
Let’s first look at the value of typeof corresponding to each data type:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
|
We will find a problem, that is, typeof determines the data The type is actually not accurate. For example, the typeof return value of arrays, regular expressions, dates, and objects is all object, which will cause some errors.
So on the basis of typeof judging the type, we also need to use the Object.prototype.toString method to further judge the data type.
Let’s take a look at the difference between the return values of the toString method and the typeof method in the case of the same data type:
数据 | toString | typeof |
---|---|---|
“foo” | String | string |
new String(“foo”) | String | object |
new Number(1.2) | Number | object |
true | Boolean | boolean |
new Boolean(true) | Boolean | object |
new Date() | Date | object |
new Error() | Error | object |
new Array(1, 2, 3) | Array | object |
/abc/g | RegExp | object |
new RegExp(“meow”) | RegExp | object |
可以看到利用toString方法可以正确区分出Array、Error、RegExp、Date等类型。
所以我们一般通过该方法来进行数据类型的验证
instanceof
接下来该说说instanceof方法了。instanceof运算符可以用来判断某个构造函数的prototype属性是否存在于另外一个要检测对象的原型链上。
instanceof 用于判断一个变量是否某个对象的实例,如 var a=new Array();alert(a instanceof Array); 会返回 true,同时 alert(a instanceof Object) 也会返回 true;这是因为 Array 是 object 的子类。再如:function test(){};var a=new test();alert(a instanceof test) 会返回
谈到 instanceof 我们要多插入一个问题,就是 function 的 arguments,我们大家也许都认为 arguments 是一个 Array,但如果使用 instaceof 去测试会发现 arguments 不是一个 Array 对象,尽管看起来很像。
如果对原型不太了解,可以看看深入理解原型。
下面我们看看instanceof的实例:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
|
但是这里我们需要注意一个问题:
1 2 3 4 |
|
第一个为什么返回false呢?因为构造函数的原型被覆盖了。
The above is the detailed content of Detailed explanation of comparative usage examples of typeof and instanceof in JavaScript. For more information, please follow other related articles on the PHP Chinese website!