美文网首页
有关JS中的原型

有关JS中的原型

作者: 木羽木羽女口生 | 来源:发表于2020-12-03 11:28 被阅读0次
    ///class 实际上是函数,可见是语法糖
    typeof People  //'function'
    typeof Student //'function'
    
    
    //隐式原型和显式原型
    console.log( xiaoming.__proto__ )
    console.log( Student.prototype)
    console.log( xiaoming.__proto__ === Student.prototype)
    

    原型的关系

    • 每个class 都有显式原型prototype
    • 每个实例都有隐式原型 __ proto __
    • 实例的 __ proto __ 指向对应的class的prototype

    相关文章

      网友评论

          本文标题:有关JS中的原型

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