Skip to content

Instantly share code, notes, and snippets.

@exbotanical
Created July 19, 2020 15:54
Show Gist options
  • Select an option

  • Save exbotanical/6a2b7c3032bb09b4586ea454c111f1b6 to your computer and use it in GitHub Desktop.

Select an option

Save exbotanical/6a2b7c3032bb09b4586ea454c111f1b6 to your computer and use it in GitHub Desktop.
experiments with destructuring
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