Not instantiated, but not seeing the issue

Tell us what’s happening:

It keeps telling me that Thermostat needs to be instantiated. From what I can tell, it is, but maybe someone can tell me what I’m doing wrong.

Your code so far


// Only change code below this line
class Thermostat {
constuctor(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 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.121 Safari/537.36.

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

Link to the challenge:

Look closely at the spelling of constructor.

1 Like

sigh If you’ll excuse me, I’m going to go and pay my r-key a visit. Thanks for the help!

1 Like

Hey, it happens to the best of us :slight_smile: