When insantiated with a fahren heit value thermostat should set the correct temperatureture

i just aint getting it correct a whole mont i am stuck

  **Your code so far**

// Only change code below this line
class Thermostat { 
constructor (Fahrenheit) {
  this.Fahrenhiet = Fahrenheit;
  }
  get temperature () {
    return (5 / 9) *  (this._temp - 32);
    }
    set temperature (celsius) {
      this._temp = (celsius * 9.0) / 5 + 32;
    }
    }

    console.log()
// 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.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36

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

Link to the challenge:

In the constructor you are saving the initial value to this.Fahrenhiet but in the setter you are saving it to this._temp. You need to decide what you want to name the variable you are storing the internal temp in and stick with that :slight_smile:

P.S. Same issue in the getter.

1 Like

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