📅  最后修改于: 2022-03-11 15:02:11.585000             🧑  作者: Mango
function fahrenheitToCelsius(fahrenheit) {
return (((fahrenheit - 32) * 5) / 9).toFixed(1);
} // Using toFixed returns a decimal value
function celsiusToFahrenheit(celsius) {
return ((9 * celsius) / 5 + 32).toFixed(1);
} // Better to multiply in this order for celsius