广州市|广州蓝景分享—前端新手入门, 13个JavaScript代码技巧, 让你看起来像个专业高手( 二 )


average(1 2 3 4);
// Result: 2.5
13、转换华氏/摄氏度
不再怕处理温度单位 , 下面两个函数就是两个温度单位的相互转换 。

const celsiusToFahrenheit = (celsius) => celsius * 9/5 + 32;
const fahrenheitToCelsius = (fahrenheit) => (fahrenheit-32) * 5/9;
// Examples
celsiusToFahrenheit(15); // 59
celsiusToFahrenheit(0); // 32
celsiusToFahrenheit(-20); // -4
fahrenheitToCelsius(59); // 15
如果有兴趣了解、对比 , 可以在评论区留言!
想要了解更多前端技术学习 , 可以关注我们广州蓝景 。