javascript怎么判断是否为对象
时间:2021-04-07 来源:互联网
今天PHP爱好者给大家带来判断方法:1、使用toString()来判断;2、使用“obj.constructor === Object”来判断;3、使用“ypeof obj === Object”来判断;4、利用instanceof关键字来判断。希望对大家有所帮助。
本教程操作环境:windows7系统、javascript1.8.5版、Dell G3电脑。
1、toString() 第一选择
let obj = {}
Object.prototype.toString.call(obj) === '[Object Object]'
2、constructor
let obj = {}
obj.constructor === Object
3、instanceof
注意:使用instanceof对数组进行判断也是对象
let obj = {}
obj instanceof Object //true
let arr = []
arr instanceof Object //true
4、typeof
let obj = {}
typeof obj === Object
// 根据typeof判断对象也不太准确
表达式 返回值
typeof undefined 'undefined'
typeof null 'object'
typeof true 'boolean'
typeof 123 'number'
typeof "abc" 'string'
typeof function() {} 'function'
typeof {} 'object'
typeof [] 'object'
以上就是javascript怎么判断是否为对象的详细内容,更多请关注php爱好者其它相关文章!
-
大江湖之苍龙与白鸟暗器技能推荐 2024-11-26
-
速进!带你了解全网热搜榜api接口热知识 2024-11-26
-
心动小镇汽车载具获得方法 2024-11-26
-
庄园合合铲除杂草方法 2024-11-26
-
带你了解全球行政区域划分api接口详情 2024-11-26
-
逆水寒风云商店进入方法 2024-11-26