判断一个对象中是否有指定属性
1 hasOwnProperty
var a = {b:1}a.hasOwnProperty('b')truea.hasOwnProperty('c')false
2 in
原链接: https://www.cnblogs.com/guozongzhang/p/10823806.html
本文共 213 字,大约阅读时间需要 1 分钟。
1 hasOwnProperty
var a = {b:1}a.hasOwnProperty('b')truea.hasOwnProperty('c')false
2 in
原链接: https://www.cnblogs.com/guozongzhang/p/10823806.html
转载于:https://www.cnblogs.com/star-x/p/10901604.html