### 1
console.log(dog instanceof Dog) 判断dog是不是Dog的对象(实例)
### 2
属性是否只存在对象中 用 对象.hasOwnProperty("属性")
构造函数的 原型 用 prototype 对象用 _proto_
### 3
Array 中 新增一个方法x,可以压入一个元素
Array.prototype.x1=function(a){
this.push(a)
}
### 1
console.log(dog instanceof Dog) 判断dog是不是Dog的对象(实例)
### 2
属性是否只存在对象中 用 对象.hasOwnProperty("属性")
构造函数的 原型 用 prototype 对象用 _proto_
### 3
Array 中 新增一个方法x,可以压入一个元素
Array.prototype.x1=function(a){
this.push(a)
}