使用JavaScript将每加仑的英里数转换为每公升公里
问题
我们需要编写一个JavaScript函数,该函数接受以英里/加仑为单位的数字,并返回其等效的km / L。
示例
以下是代码-
const num = 25;输出结果const converter = (mpg) => {
let LITRES_PER_GALLON = 4.54609188;
let KILOMETERS_PER_MILE = 1.609344;
const ratio = KILOMETERS_PER_MILE / LITRES_PER_GALLON;
return Math.round(100 * mpg * ratio) / 100;
};
console.log(converter(num));
以下是控制台输出-
8.85
以上是 使用JavaScript将每加仑的英里数转换为每公升公里 的全部内容, 来源链接: utcz.com/z/335668.html