Hey guys, can someone please explain to me why this code is not working for this challenge because I just don’t what is wrong with my code
Your code so far
var Car = function() {
// this is a private variable
var speed = 10;
// these are public methods
this.accelerate = function(change) {
speed += change;
};
this.decelerate = function() {
speed -= 5;
};
this.getSpeed = function() {
return speed;
};
};
var Bike = function() {
// Only change code below this line.
var speedo = 4;
this.getGear = function() {
return speedo -= -0;
};
this.setGear = function() {
return speedo -= +1;
};
};// End bike fucntion
var myCar = new Car();
var myBike = new Bike();
Your browser information:
Your Browser User Agent is: Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.0.11780 Safari/537.36
.
Link to the challenge:
https://www.freecodecamp.org/challenges/make-object-properties-private