Display address
function address(street, city, province, postalCode, country) {
this.street = street;
this.city = city;
this.postalCode = postalCode;
this.country = country;
this.finalAddress = function() {
return street + " " + city + " " + province + " " + postalCode + " " + country;
};
}
var addressOne = new address("24-12091", "Richmond", "BC", "V6V 2B5", "Canada");
console.log(addressOne.finalAddress()); // 24-12091 Richmond BC V6V 2B5 Canada