__proto__是每个对象都有的一个属性,prototype是函数才会有的属性,使用Object.getPrototypeOf()代替__proto__。
hasOwnProperty()判断指定属性是否为自有属性;in操作符对原型属性和自有属性都返回true
'''
//定义类
classPoint{constructor(x,y){this.x=x;this.y=y;}toString(){return'('+this.x+', '+this.y+')';}}varpoint=newPoint(2,3);point.toString() // (2, 3)point.hasOwnProperty('x') // truepoint.hasOwnProperty('y') // truepoint.hasOwnProperty('toString') // falsepoint.__proto__.hasOwnProperty('toString') // true
'''
网友评论