Showing error in temperature! What wrong with?

Tell us what’s happening:

Your code so far


// Only change code below this line
class Thermostat{
constructor(fahrenheit){
    this.fahrenheit=fahrenheit;
}
}
get temperature()
{
return ( 5 / 9)*(this.fahrenheit - 32);
}
set temperature(celsius)
{
this.fahrenheit=(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 (Linux; Android 8.1.0; Redmi 5A) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.101 Mobile Safari/537.36.

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

Link to the challenge:

Hi @jhrayththa, welcome to the forum.

I think you have an extra } closing bracket: thus making the following statements invalid syntax.

constructors and both get and set methods needs to be enclosed in the class declarations:

class Foo{
  constructor(){}
  getter(){}
  setter() {}
}

Hope it helps :sparkles: