JS-原型-constructor

先说一个现实中的案例,我(对象)能通过Object.getPrototypeOf(我)  找到我的叔叔(构造函数)

同时呢,我叔叔(构造函数)也能通过.constructor找到我或者新建我

其实结合上一篇博文理解更轻松(https://www.cnblogs.com/KeithTee/p/15988746.html

    console.log(Object.getPrototypeOf(hd) == User.prototype);
    console.log(Object.getPrototypeOf(hd).constructor == User);

 

posted @ 2022-03-10 11:34  沉梦昂志_doc  阅读(26)  评论(0编辑  收藏  举报