Created
July 19, 2020 15:54
-
-
Save exbotanical/6a2b7c3032bb09b4586ea454c111f1b6 to your computer and use it in GitHub Desktop.
experiments with destructuring
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 weatherInfo = t => Object.values(((c) => ({ r: `${c} is ${c > 0 ? "above ": ""}freezing temperature` }))(((m) => (m - 32) * (5/9))(t)))[0]; | |
| // calc f => c |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment