Created
January 17, 2019 16:25
-
-
Save sethdavis512/d82161a6d3c051c9ae8e888b882277a0 to your computer and use it in GitHub Desktop.
Fahrenheit to Celsius
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const celsius = [-15, -5, 0, 10, 16, 20, 24, 32]; | |
const fahrenheit = celsius.map(t => t * 1.8 + 32); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment