Tell us what’s happening:
So basically , it says that I am not completing the last condition which is :
Calling the setter with a Celsius value should set the temperature .
I don’t know what I am doing wrong.
Please help.Thank You.
Your code so far
// Only change code below this line
class Thermostat {
constructor(F){
this.F = F;
}
get temperature() {
return 5/9*(this.F -32);
}
set temperature(Celsius) {
this.F= (Celsius * 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/88.0.4324.190 Safari/537.36.
Challenge: Use getters and setters to Control Access to an Object
Link to the challenge:
