It's topic of constructor using getter and setter. I am unable to pass this test

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

  **Your code so far**

// Only change code below this line
class Thermostat{
constructor(fahrenheit){
  this.fahrenheit = fahrenheit;
}

// getter 
get temperture(){
 return (5/9) * (this.fahrenheit - 32)
  
}


// setter 
set temperture(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
console.log(temp);
  **Your browser information:**

User Agent is: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36

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

Link to the challenge:

You have to make a decision on how you’re going to spell “temperature”. :wink:

1 Like

Thank you very much.

Trust me, we’ve all been there…

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.