Tell us what’s happening:
I’ve set the variable ‘gear’ as a private property and the rest are public properties. I’ve set this.retrieveGear function so that I can return the result of gear. I don’t understand what I’m doing wrong.
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 = 0;
this.getGear = function() {
gear++;
};
this.setGear = function() {
gear--;
};
this.retrieveGear = function() {
return gear;
};
};
var myCar = new Car();
var myBike = new Bike();
Your browser information:
Your Browser User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36.
Link to the challenge:
https://www.freecodecamp.org/challenges/make-object-properties-private