摘要: ES6 class中的一些问题 记录下class中的原型,实例,super之间的关系 //父类 class Dad { constructor(x, y) { this.x = 5; this.y = 1; this.state = 789 } static x = 521 state1 = 666 阅读全文
posted @ 2022-07-21 15:15 lupulus 阅读(240) 评论(0) 推荐(0) 编辑