Skip to content

Instantly share code, notes, and snippets.

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