JavaScript objects represent Select one: a. Functions of the object b. Both Properties and Functions of the object c. Properties of the object d. Tasks of the object code example
Example: js create object with properties
function Car(make, model, year) {
this.make = make;
this.model = model;
this.year = year;
}