对于下面的代码,
function Employee() {
this.name = "";
this.dept = "general";
}
以下是我对可视化上述代码表示的理解,
对于下面的代码,
function Manager() {
Employee.call(this);
this.reports = [];
}
Manager.prototype = Object.create(Employee.prototype);
以下是我对可视化上述代码表示的理解,
上述图表是否准确表示了此 Javascript 代码创建的原型链?
注意:Javascript初学者