Add a Setter to Update a Property

The class Temperature stores a celsius value. Add a setter fahrenheit that converts the assigned value to celsius and stores it in this.celsius. Use the formula (f - 32) * 5 / 9.
JavaScript
Console