Use getters and setters to Control Access to an Object Help

Tell us what’s happening:

it is working. it does even recognize the class Thermostat. It does not even pass the first test.

Your code so far


function makeClass() {
  "use strict";
  /* Alter code below this line */
 class Thermostat {
   constructor (temper) {
     this._temperature = temper;
   }
   get temperature(){
     return 5/9*(this._temperature - 32);
   }
   set temperature(cel){
     this._temperature = cel;
   }
 }
  /* Alter code above this line */
  return Thermostat;
}
const Thermostat = makeClass();
const thermos = new Thermostat(76); // setting in Fahrenheit scale
let temp = thermos.temperature; // 24.44 in C
thermos.temperature = 26;
temp = thermos.temperature; // 26 in C

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299.

Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/es6/use-getters-and-setters-to-control-access-to-an-object

Your code passes for me.

Sometimes the browser glitches. Try a different browser, reboot, clear the browser cache, etc.