Remove kmphToMph
This commit is contained in:
@ -1,17 +0,0 @@
|
||||
---
|
||||
title: kmphToMph
|
||||
tags: math,beginner
|
||||
---
|
||||
|
||||
Convert kilometers/hour to miles/hour.
|
||||
|
||||
Multiply the constant of proportionality with the argument.
|
||||
|
||||
```js
|
||||
const kmphToMph = (kmph) => 0.621371192 * kmph;
|
||||
```
|
||||
|
||||
```js
|
||||
kmphToMph(10); // 16.09344000614692
|
||||
kmphToMph(345.4); // 138.24264965280207
|
||||
```
|
||||
Reference in New Issue
Block a user