摘要: 1 原型链继承 1:私有的name属性变公有(引用数据类型),(基本数据类型无影响) 2:无法传递参数 3:可以使用原型上的属性和方法 function SuperType (){ this.age = '18' this.name = ['xh', 'zz'] } SuperType.protot 阅读全文
posted @ 2021-06-03 14:28 行屰 阅读(72) 评论(0) 推荐(0) 编辑