ES6 - Use getters and setters to Control Access to an Object

Tell us what’s happening:
I am stuck at this level, can you guys give me some advice to solve this, thanks.

Your code so far

// Only change code below this line
class Thermostat {
  constructor(temp){
    this.temp = temp;
    
  }
  get temperature(){
     return 5 / 9 * (this.temp - 32);
  }

  set temperature(updateTemperature){
   this.temp = updateTemperature;
    
  }
  
  
}
// Only change code above this line

const thermos = new Thermostat(76); // Setting in Fahrenheit scale
let temp = thermos.temperature; // 24.44 in Celsius
console.log(temp)
thermos.temperature = 26;
temp = thermos.temperature; // 26 in Celsius
console.log(temp)

Your browser information:

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

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

Link to the challenge:

You need to decide which format you are going to store this.temp in and keep it that way. The constructor is storing the temp in F but the setter is storing it in C.

1 Like

woah it works, thank you

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