3.4.7 object类型之通用属性和方法
constructor 构造函数,保存用于创建当前对象的函数。 hasOwnProperty(propertyName) 用于检查指定属性是否在当前对象实例中,参数须以字符串形式指定。 function f1(name) { this.name = name; } f1.prototype.age = 12; obj = new f1(); console.log(obj.hasOwnProperty('name')); //true,实例中 console.log(obj.hasOwnProperty('age')); //false,原型中 console.log(obj.age)
用户评论