What's Wrong with this code, I am finding it difficult to find the bug

Tell us what’s happening:

I am not able to solve
Getter and Setter
Thermostat should be able to be instantiated.

Your code so far


// Only change code below this line
class Thermostat{
constructor(value){
  this.value=value;
}
get temp(){
  return 5/9 * (this.value - 32);
}
set temp(Celsius){
    this.value = 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 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36.

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

Link to the challenge:

@Swarajsm hey,

you have it set to temp here…

but you are trying get it from thermos.temperature

let temp = thermos.temperature; // 24.44 in Celsius
thermos.temperature = 26;
temp = thermos.temperature; // 26 in Celsius

so this will result in them being undefined

@biscuitmanz I don’t get it, Where do I make the changes and why?
Thank you!

You use get and set like you use properties. Your get and set name do not match the name used.

// the getter being used (temperature)
let temp = thermos.temperature; // 24.44 in Celsius

// the setter being used (temperature)
thermos.temperature = 26;

// Your get and set do not match the name (temp)
get temp()
set temp()
1 Like

Thanks, I am getting it slowly, Maybe Freecodecamp.org I need to do the excersises again

@Swarajsm, additionally, do not forget to use this._ (underscore) as shown in the example code, otherwise your code won’t pass this test