typeof() or typeof num 运算符
1、可以识别标准类型
2、不能识别具体的对象类型(function除外)
instanceof
1、判断内置对象类型
2、不能判断原始类型
3、判别自定义对象类型
创建查询函数
function type(obj){
return Object.prototype.toString.call(obj).slice(8,-1);
}
1、可以识别标准类型以及内置(build-in)对象类型
2、不能识别自定对象类型(function类型会被识别成object
时间: 2024-12-15 06:55:03