For creating instances of any class i.e. objects we use new keyword.
function Car() { } var car1 = new Car(); var car2 = new Car();