js 继承原理【终极】
function Person(name, age) {
this.age = age
this.name = name
}
Person.prototype.say = function () {
console.log("Hello World");
}
function Student(name, age, score) {
// 继承
Person.call(this, name, age)
this.score = score
thi.