摘要: 最近在回顾JS构造函数以及原型,原型链的知识。在此记录一下。 1、显式原型属性:prototype。 2、阴式原型属性:__proto__。 function Fn() { // this.prototype = {} } const fn = new Fn(); Fn.prototype.say 阅读全文
posted @ 2021-08-19 17:34 闯入码途的水产人 阅读(34) 评论(0) 推荐(0) 编辑