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

Tell us what’s happening:
Describe your issue in detail here.

  **Your code so far**
// Only change code below this line
class Thermostat{
constructor(temp){
this._temp = temp;
}
get thermo(){
return (5/9) * (this._temp - 32);
}
set thermo(getTemp){
this._temp = getTemp * 9.0 / 5 + 32;
}
}

// Only change code above this line

const thermos = new Thermostat(76); // Setting in Fahrenheit scale
console.log(thermos.thermo);
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/103.0.0.0 Safari/537.36

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

Link to the challenge:

Your code is almost correct, you just have one issue. Look closely at the code examples below the function:

let temp = thermos.temperature; // 24.44 in Celsius
thermos.temperature = 26;
temp = thermos.temperature; // 26 in Celsius

What is the name of the value they are using to set and get the temperature? Does that match the name you are using for the setter and getter?

Thank you so much i got it .