Files
30-seconds-of-code/snippets_archive/kmphToMph.md
Angelos Chalaris 6fcba24379 Archived
2018-10-16 20:22:23 +03:00

15 lines
261 B
Markdown

### kmphToMph
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
```