Js Foundation
var car = function(make,model) {
this.make = make;
this.model = model;
}
var myCar = new car('honda','accord');
myCar.year = 2005;
INFO
var car = function(make,model) {
this.make = make;
this.model = model;
}
var myCar = new car('honda','accord');
myCar.year = 2005;