I'm not sure why this code is not working. I'm trying to use Object.create();
instead new
var Car = function() {
console.log('Car Consctructor');
};
Car.prototype.color = 'red';
var bmw = Object.create(Car);
console.log(bmw.color); //Doesn't log red - ??