Tell us what’s happening:
I was able to pass the test, but I am not understanding how calling setgear function returns the gear value when its not defined within the setgear function. How does getvalue is called?
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 gear = 9;
this.getGear = function(){
return gear;
};
this.setGear = function(gears){
gear = gears;
};
};
var myCar = new Car();
var myBike = new Bike();
myBike.setGear(4);
Your browser information:
Your Browser User Agent is: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36
.
Link to the challenge:
https://www.freecodecamp.org/challenges/make-object-properties-private