标签:developer 字符串 字符 cti ber dev bool boolean href
typeof 可以验证出的数据类型有:
undefined number string boolean object function
注: 返回结果为字符串类型
instanceof 可以判断是否为某个类型 用法; [需要判断的值] instanceof [某一数据类型]
深入解析: https://www.ibm.com/developerworks/cn/web/1306_jiangjj_jsinstanceof/index.html
in 可以判断某个属性是否是某个对象上的属性(包括其原型链以及系统定义的私有属性)
hasOwnProperty 可以判断某个属性是否是某个对象上的属性(不包括系统定义的属性以及原型链上的属性)
标签:developer 字符串 字符 cti ber dev bool boolean href
原文地址:https://www.cnblogs.com/-cat-/p/10591522.html