📜  javascript代码示例中的华氏到摄氏度

📅  最后修改于: 2022-03-11 15:04:32.854000             🧑  作者: Mango

代码示例5
function celsiusToFahrenheit(clesius) {
    var fahrenheit = clesius * 9 / 5 + 32;
    return fahrenheit;
}
console.log(celsiusToFahrenheit(4))
//Output: 39.2