[JavaScript] new operator 2021.09.12 ```javascript function Car(make, model, year) { this.make = make; this.model = model; this.year = year; }