私にはPers(on)とPersから派生した従業員がいます。
Pers = function(options){
this.Name;
this.ID;
this.init = function(options){
this.Name=options.Name;
this.ID=options.ID;
}
}
Employee = function(options){
this.Sal;
this.init = function(options){
this.Sal=options.Sal;
this.__proto__.init(options);
}
this.init(options);
}
Employee.prototype=new Pers();
今、私が新しいオブジェクトを作成するとき...
var o=new Employee({Name:"Nik",ID:"1",Sal:100});
var p=new Employee({Name:"Tanja",ID:"2",Sal:200});
彼らの名前を知らせてください、私は2回「タンジャ」を手に入れます。
誰かアイデアはありますか?