Skip to content

Instantly share code, notes, and snippets.

@sebasmanu14
Created July 7, 2020 03:22
Show Gist options
  • Save sebasmanu14/9ad1930b4fc24d064d73d3ea8c99254d to your computer and use it in GitHub Desktop.
Save sebasmanu14/9ad1930b4fc24d064d73d3ea8c99254d to your computer and use it in GitHub Desktop.
para poder hacer la destructuracion se pone { }
const HIGH_TEMPERATURES = {
yesterday: 75,
today: 77,
tomorrow: 80
};
// Only change code below this line
const {today} = HIGH_TEMPERATURES; /////haciii
const {tomorrow} = HIGH_TEMPERATURES;
// Only change code above this line
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment