Object Oriented and Functional Programming
var car = {
"wheels":4,
"engines":1,
"seats":5
};
var motorBike = {
"wheels":3,
"engines":1,
"seats":2,
// Only change code below this line.
};var Car = function() {
this.wheels = 4;
this.engines = 1;
this.seats = 5;
};
// Only change code below this line.
var MotorBike = function() {
this.engines=1;
this.wheels=2;
this.seats=2;
};Last updated