Question 96 of 10096%
96
What do these two console.log lines print?
function Car() {}
Car.prototype.wheels = 4;
const car = new Car();
car.wheels = 6;
console.log(car.wheels);
console.log(Car.prototype.wheels);
96/100
function Car() {}
Car.prototype.wheels = 4;
const car = new Car();
car.wheels = 6;
console.log(car.wheels);
console.log(Car.prototype.wheels);