JavaScript is designed on an object-based paradigm. An object is a collection of properties, and a property is an association between a name (or key) and a value. A property's value can be a function, in which case the property is known as a method....want it to have properties for make, model, and year. To do this...function Car(make, model, year) { this.make = make; this.model...