const celsiusToFahrenheit = celsius => celsius * 9/5 + 32; const fahrenheitToCelsius = fahrenheit => (fahrenheit - 32) * 5/9; // Examples celsiusToFahrenheit(15); // 59 fahrenheitToCelsius(59); // 15