//new przedmiot
funkcjonować A () {
this.first = "jeden";
this.second = "dwa";
this.third = "trzy";
}
//add the "" przedmiot nasz przedmiot
A.prototype.myType = {
firstType: funkcja () {
},
secondType: funkcja () {
//how I zmieniać the wartość funkcja A "po drugie" własność od
tutaj?
// "przedmiot" scoped the aktualny przedmiot
},
thirdType: funkcja () {
}
}
B = nowy A ();
var typeIt = "secondType";
jeżeli (typeIt w B.myType) {
B.myType ["typeIt"];
}
|