// 华氏度转摄氏度 const toCelsius = (fahrenheit) => { return (fahrenheit - 32) * 5 / 9; } // 摄氏度转华氏度 const toFahrenheit = (celsius) => { return (celsius * 9 / 5) + 32; }