how to access object property through function parameter value code example
Example: js create object with properties
function Car(make, model, year) {
this.make = make;
this.model = model;
this.year = year;
}
function Car(make, model, year) {
this.make = make;
this.model = model;
this.year = year;
}