add celsiusToFahrenheit and fahrenheitToCelsius

This commit is contained in:
evyatarmeged
2018-10-01 15:26:36 +03:00
parent f5596168b4
commit 5733491728
7 changed files with 82 additions and 0 deletions

View File

@@ -0,0 +1,2 @@
const celsiusToFahrenheit = degrees => 1.8 * degrees + 32;
module.exports = celsiusToFahrenheit;