JavaScript
JavaScript 代码规范
通常使用 4 个空格符号来缩进代码块
源代码:
点击运行 »
function toCelsius(fahrenheit) { return (5 / 9) * (fahrenheit - 32); }
运行结果:
点击运行 »