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

Tell us what’s happening:
For the second part of this task

In the class, create a getter to obtain the temperature in Celsius and a setter to set the temperature in Celsius.

Is it meant to say “…and a setter to set the temperature in Farenheit”?

Your code so far

// Only change code below this line
class Thermostat {
  constructor(temperature) {
    this._temperature = temperature
  }
  get temperature() {
    return this._temperature = 5/9 * (this._temperature - 32)
  }
  set temperature(cel){
    return this._temperature = cel * 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/108.0.0.0 Safari/537.36

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

Link to the challenge:

The setter accepts a Celcius temperature. What temperature is stored internally is up to you.

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