标签:bsp ber 原型 object instance span number 函数 nbsp
1. typeof 返回值:"string","number","boolean","undefined","object","function"。但是有时候会出现对象和数组没有办法区分,返回值都是"object"。这个时候就要用到instanceof。
typeof({}) //object typeof([]) //object
2. instanceof 返回值 true false, 判断构造函数的prototype是否存在于参数obj的原型链上。
([1,2,3,4] instanceof Array) // true ({"a":"b"} instanceof Array) // false
标签:bsp ber 原型 object instance span number 函数 nbsp
原文地址:http://www.cnblogs.com/biangz/p/6514388.html