Getter and setter issue

Tell us what’s happening:
Can somebody point out the mistake?
I am getting this message:-
// running tests

Thermostat

should be able to be instantiated. A

getter

should be defined. A

setter

should be defined. // tests completed

Your code so far


// Only change code below this line
class Thermostat
{
constructor(temperature)
{
  this.temperature=temperature;
}
get f_to_c()
{
  var result_1= ((5/9)*(this.temperature-32));
  return result_1;
}
set f_to_c(updated)
{
  this.temperature=(updated*9)/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 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36.

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

Link to the challenge:

// Only change code below this line
<REDACTED>

// 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

Thank you for pointing out

It is great that you solved the challenge, but instead of posting your full working solution, it is best to stay focused on answering the original poster’s question(s) and help guide them with hints and suggestions to solve their own issues with the challenge.

We are trying to cut back on the number of spoiler solutions found on the forum and instead focus on helping other campers with their questions and definitely not posting full working solutions.

Thank you for understanding.