converter_fahrenheit_celsius
Version:
This package allows you to convert Fahrenheit to Celsius and Celsius to Fahrenheit
16 lines (13 loc) • 364 B
JavaScript
// Convert Fahrenheit to Celsius
function сonvertFahrenheitToCelsius(fahrenheit) {
return ((fahrenheit - 32) * 5) / 9;
}
// Convert Celsius to Fahrenheit
function сonvertCelsiusToFahrenheit(celsius) {
return (celsius * 9) / 5 + 32;
}
// Export of functions
module.exports = {
сonvertFahrenheitToCelsius,
сonvertCelsiusToFahrenheit,
};