6.
Code
function Customer(contactName, companyName, address, phoneNumber, eMail){
this.contactName=contactName;
this.companyName=companyName;
this.address=address;
this.phoneNumber=phoneNumber;
this.eMail=eMail;
this.zipCode="";
this.askZip=function(){
this.zipCode=prompt("Enter zip");
}
this.get=function(){
alert(this.contactName+","+this.companyName+","+this.address+","+this.phoneNumber+","+this.eMail+","+this.zipCode);
}
}
function test(){
var c = new Customer("Contact Name","Company Name", "Address", "Phone Number", "Email");
c.askZip();
c.get();
}