/** * Define a function Car*/ function Car(color,doors) { var car = {}; = color; = doors; = function(){ alert("This is a " + + " car, there are " + + " doors." ); } return car; }