1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
/**
* @constructor
* @returns {Woman}
*/
function Woman (fName, sName) {
var firstName = fName;
var secondName = sName;
this.getFirstName = function () {
return firstName;
}
this.getSecondName = function () {
return secondName;
}
this.address = {
street: "unknown street",
city: "some town",
zip: "15000",
print : function () {
return "Address: " + this.street + ", " + this.city + ", " + this.zip;
}
};
}
var martin = new Woman("Martin", "Chloupek");
with(martin) {
console.log(getFirstName());
address.city = "Pribram";
with (address) {
console.log(city);
city = "Podlesi";
}
}
console.log(martin.address.city);
|