Answers for "how to can convert to celsius from fahrenheit in javascript"

5

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
Posted by: Guest on July-03-2020
1

Celsius to fahrenheit in Javascript

function celsiusToFahrenheit(clesius) {
    var fahrenheit = clesius * 9 / 5 + 32;
    return fahrenheit;
}
console.log(celsiusToFahrenheit(4))
//Output: 39.2
Posted by: Guest on December-15-2021

Code answers related to "how to can convert to celsius from fahrenheit in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language