How do i solve this please

Tell us what’s happening:
need a guide on this

Your code so far


// Only change code below this line
class Thermostat{
  constructor(Fahrenheit){
  this._Fahrenheit = Fahrenheit;
}
// getter
get temperature(){
  return this._Fahrenheit;
}
// setter
set temperature(Celsius){
this._Fahrenheit = Celsius;
}
}
// 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/87.0.4280.88 Safari/537.36.

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

Link to the challenge:

You need to do the appropriate conversions in the setter and getter. The getter returns a temp in C so you have to convert this._Fahrenheit to C before you return it. The setter takes a temp as C so you have to convert that temp from C to F when you save it to this._Fahrenheit.

1 Like

this is not the right conversion - in the instruction there is written hiw to convert Between Fahrenheit and Celsius