What am i missing

it does instantiate. as a result, it doesnt see the getter or setter

Your code so far


// Only change code below this line


class Thermostat {
constructor(fahrenheit) {
  this._fahrenheit = fahrenheit;}

get temp() {
  return ( 5/9 ) * (this._fahrenheit -32);}

set temp(celcius) {
  this._fahrenheit = (celcius * 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 10.0; Win64; x64; rv:80.0) Gecko/20100101 Firefox/80.0.

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

Link to the challenge:

You named the getter and setter temp, not temperature. It’ll only see what you tell it.

Hmmm…now I have to go back and re enter it. I played with it, then went ahead. I was getting fed up with it!:flushed:

1 Like