Use getters and setters to Control Access to an Object - Is this even correct, or did I pass due to a bug

I did this all via an intuitive understanding which I don’t think is currently good enough.

I know there are big issues with this challenge after googling.

Does my code correctly give what is asked for?

Your code so far






function makeClass() {
  "use strict";
  /* Alter code below this line */

class Thermostat {
  constructor(tempInF) {

    this.temperature = tempInF;

  }

  get getTemp() {
    return this.temperatureInC;
}

set setTemp(changeToC) {
  this.temperatureInC = (5/9)*(tempInF-32);
}
  /* 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 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.167 Safari/537.36.

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

it is fine, yup.

But please wrap your code in spoiler tags, for future readers who haven’t done this one yet.