标签:pre 函数 func create his name nbsp script 对象
1.对象的继承
var 新对象=object.create(被继承的对象)
新对象.__proto__==被继承的对象
2.函数的继承
<script> function Person(name,age){ this.name=name; this.age=age; } function Student(name,age,score){ Person.call(this,name,age); this.score=score } var zs=new Student(‘zs‘,15,95) console.log(zs) </script>
打印结果:Student {name: "zs", age: 15, score: 95}
标签:pre 函数 func create his name nbsp script 对象
原文地址:https://www.cnblogs.com/zhaodz/p/11593922.html