Remove kmphToMph

This commit is contained in:
Angelos Chalaris
2020-04-16 11:11:48 +03:00
parent ec38b481eb
commit 66421c9aaa
2 changed files with 0 additions and 25 deletions

View File

@ -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
```