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

Tell us what’s happening:
Can someone take a look at my code and tell me what Im doing wrong I looked at the solution for this and I feel like its identical to my code but for some reason which I cant understand the code wont run If someone can guide me that would be great

Your code so far

// Only change code below this line
class Thermostat {
  constructor(F) {
    this._F = F
  }
  get celsius() {
    celsius = (5/9) * (this._F - 32)
    return celsius
  }
  set celsius(setTemp) {
    setTemp =  celsius * 9.0 / 5 + 32
    this._F = setTemp
    return setTemp
  }
}
// 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/115.0.0.0 Safari/537.36 Edg/115.0.1901.203

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

Link to the challenge:

nevermind It was a naming issue I figured it out

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