原型链

作者: volcan | 来源:发表于2018-08-03 15:09 被阅读0次

    __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

    '''

    相关文章

      网友评论

          本文标题:原型链

          本文链接:https://www.haomeiwen.com/subject/bqoyvftx.html