判断当前对象是否存在某个参数的时候,使用 hasOwnproperty() 方法
var obj = {
a: 1,
b: 2,
c: 3
}
console.log(obj.hasOwnProperty('a')); // true
console.log(obj.hasOwnProperty('hello')); // false
var obj = {
a: 1,
b: 2,
c: 3
}
console.log(obj.hasOwnProperty('a')); // true
console.log(obj.hasOwnProperty('hello')); // false