Use getters and setters to Control Access to an Object
Summary
A getter function is used to return the value of an object’s private variable.
A setter function is used to modify the value of an object’s private variable.
Final Code
// Only change code below this lineclassThermostat{constructor(fahrenheit){this.fahrenheit=fahrenheit;}gettemperature(){return(5/9)*(this.fahrenheit-32);}settemperature(celsius){this.fahrenheit=(celsius*9.0)/5+32;}}// Only change code above this lineconstthermos=newThermostat(76);// Setting in Fahrenheit scalelettemp=thermos.temperature;// 24.44 in Celsiusthermos.temperature=26;temp=thermos.temperature;// 26 in Celsius