通过代码来解释javascript原型与原型链
标签:
JavaScript
前言
本文采用ES6语法说明
对代码进行了详细的标注
对原型和原型链做了解释
代码如下:
//构造人类 class People{ constructor(name){ this.name = name } eat () { console.log(`我叫'${this.name}',我喜欢吃东西`) } } // 构造了Student类并继承了People类 class Student extends People{ constructor(name,number){ // name是公用参数,可以从父亲那里继承 super(name) this.number = number } numberNo () { console.log(`我叫'${this.name}',学号为'${this.number}'`) } } //创建实例对象 let lihua = new Student('李华',1001) console.log(lihua.name) console.log(lihua.number) lihua.numberNo() lihua.eat()
点击查看更多内容
为 TA 点赞
评论
共同学习,写下你的评论
评论加载中...
作者其他优质文章
正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦