blob: e9244ba47c9337de1c38719270aa004e08a38b78 [file]
var Address = function (street, town) {
this.street = street;
this.town = town;
}
Address.prototype.print = function () {
console.log(this.street + " : " + this.town);
}
module.exports = new Address("Naskove", "Prague");