Skip to content

Instantly share code, notes, and snippets.

@gladchinda
Created April 18, 2018 09:01
Show Gist options
  • Save gladchinda/f7385cd9863bc24cdbea540e5b46c813 to your computer and use it in GitHub Desktop.
Save gladchinda/f7385cd9863bc24cdbea540e5b46c813 to your computer and use it in GitHub Desktop.
const rgb = [255, 200, 0];
// Array Destructuring
const [red, green, blue] = rgb;
console.log(`R: ${red}, G: ${green}, B: ${blue}`); // R: 255, G: 200, B: 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment