Skip to content

Instantly share code, notes, and snippets.

@nonseodion
Created March 13, 2020 00:59
Show Gist options
  • Save nonseodion/3704d712d9727807d185b1a1af6c4555 to your computer and use it in GitHub Desktop.
Save nonseodion/3704d712d9727807d185b1a1af6c4555 to your computer and use it in GitHub Desktop.
const organizations = ['Pyke', 'Black Sun', 'Kanjiklub', 'Crimson Dawn'];
const [firstGang, secondGang, thirdGang, fourthGang] = organizations;
console.log(firstGang); // Outputs 'Pyke'
console.log(secondGang); // Outputs 'Black Sun'
console.log(thirdGang); // Outputs 'Kanjiklub'
console.log(fourthGang); // Outputs 'Crimson Dawn'
@nonseodion
Copy link
Author

Just testing gist

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment