//new Gegenstand
arbeiten A () {
this.first = „eins“;
this.second = „zwei“;
this.third = „drei“;
}
//add der „schreiben“ Gegenstand zu unserem Gegenstand
A.prototype.myType = {
firstType: Funktion () {
},
secondType: Funktion () {
//how ändere ich den Wert der Funktion a „an zweiter Stelle“ Eigentum von
hier?
// „dieses“ scoped zum gegenwärtigen Gegenstand
},
thirdType: Funktion () {
}
}
B = neues A ();
var typeIt = „secondType“;
wenn (typeIt in B.myType) {
B.myType [„typeIt“];
}
|