This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function Car(brand, model, seats, passengers) { | |
this.brand = brand; | |
this.model = model; | |
this.seats = seats; | |
this.passengers = passengers; | |
} | |
var bmw = new Car ("BMW", "X5", 5, 0); | |
var lexus = new Car ("Lexus", "L300", 4, 0); |