使用 JavaScript 的温度转换器
我们需要编写一个 JavaScript 函数,它输入一个表示温度的字符串,该温度可以是摄氏度或华氏度。
比如这样 −
"23F", "43C", "23F"
我们需要编写一个 JavaScript 函数,它输入此字符串并转换温度,从摄氏度转换到华氏度,从华氏度转换到摄氏度。
示例
以下是代码 −
const temp1 = '37C'; const temp2 = '100F'; const tempConverter = temp => { const degree = temp[temp.length-1]; let converted; if(degree === "C") { converted = (parseInt(temp) * 9 / 5 + 32).toFixed(2) + "F"; }else { converted = ((parseInt(temp) -32) * 5 / 9).toFixed(2) + "C"; }; return converted; }; console.log(tempConverter(temp1)); console.log(tempConverter(temp2));
输出
以下是控制台的输出 −
98.60F 37.78C
广告