オブジェクト指向 Javascript のいくつかの側面を学んでいます。私はこのスニペットに出くわしました
var Person = function(firstName, lastName)
{
this.lastName = lastName;
this.firstName = firstName;
};
Object.defineProperties(Person.prototype, {
sayHi: {
value: function() {
return "Hi my name is " + this.firstName;
}
},
fullName: {
get: function() {
return this.firstName + " " + this.lastName;
}
}
});
var Employee = function(firstName, lastName, position) {
Person.call(this, firstName, lastName);
this.position = position;
};
Employee.prototype = Object.create(Person.prototype);
var john = new Employee("John", "Doe", "Dev");
そして私の質問は: なぜこのスニペットは Object.create(Person.prototype) を使用するのですか? プロトタイプを次のように単純にリセットするべきではありません:
Employee.prototype = Person.prototype;