//new
functioneer A () {
this.first = „één“;
this.second = „twee“;
this.third = „drie“;
}
//add het „het typen“ voorwerp aan ons voorwerp
A.prototype.myType = {
firstType: functie () {
},
secondType: functie () {
//how verander ik de waarde van functieA's „tweede“ bezit van
hier?
// „dit“ is scoped aan het huidige voorwerp
},
thirdType: functie () {
}
}
B = nieuwe A ();
var typeIt = „secondType“;
als (typeIt in B.myType) {
B.myType [„typeIt“];
}
|