Getters and Setters lesson

Hey guys,
How come my code ain’t working? I was a bit confused, and got through the hints and still not passing. Thanks ! :slight_smile:

  **Your code so far**

// Only change code below this line
class Thermostat {
constructor (temperature) {
  this._temperature = temperature;
}
get celsius () {
  return 5/9 * (this._temperatture - 32);
}
set celsius (newTemp) {
  this._temperature = newTemp * 9.0 / 5 + 32;
}
}
// Only change code above this line

const thermos = new Thermostat(76); // Setting in Fahrenheit scale
let temp = thermos.temperature; // 24.44 in Celsius
thermos.temperature = 26;
temp = thermos.temperature; // 26 in Celsius
  **Your browser information:**

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36

Challenge: Use getters and setters to Control Access to an Object

Link to the challenge:

Two things:

  • You have a typo in the getter (this._temperatture)
  • Look at how the code is using the getter and setter:
let temp = thermos.temperature;
thermos.temperature = 26;

What does this tell you the names of the getter and setter should be?

ahhh I think I understood , i’ll give it another go.

Okay I got it, I managed to pass it.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.