using javascript Write a function that takes in a number representing the temperature in Celsius and returns the temperature in Fahrenheit. Write another function that does the opposite (Fereignheit to Celsius) code example
Example: javascript celcius to farenheit
const celsiusToFahrenheit = celsius => celsius * 9/5 + 32;
const fahrenheitToCelsius = fahrenheit => (fahrenheit - 32) * 5/9;
// Examples
celsiusToFahrenheit(15); // 59
fahrenheitToCelsius(59); // 15