Closed. This question does not meet Stack Overflow guidelines。它当前不接受答案。












想改善这个问题吗?更新问题,以便将其作为on-topic用于堆栈溢出。

6年前关闭。



Improve this question




我想在JavaScript中将米转换为英里。

例如12700米为7.8867英里。

我可以使用什么公式进行转换?

最佳答案

function getMiles(i) {
     return i*0.000621371192;
}
function getMeters(i) {
     return i*1609.344;
}

09-28 10:55