1const celsiusToFahrenheit = celsius => celsius * 9/5 + 32;
2
3const fahrenheitToCelsius = fahrenheit => (fahrenheit - 32) * 5/9;
4
5// Examples
6celsiusToFahrenheit(15); // 59
7fahrenheitToCelsius(59); // 15
1function cToF(celsius)
2{
3 var cTemp = celsius;
4 var cToFahr = cTemp * 9 / 5 + 32;
5 return cToFahr;
6}
7console.log(cToF(36))
8
9function FtoC(fahrenheit){
10 let celcius = fahrenheit*5/9 -32;
11 return celcius;
12}
13console.log(FtoC(20));