Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@0GiS0
Created February 3, 2019 17:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 0GiS0/bc12a94690b387d8e48deae902d8c41d to your computer and use it in GitHub Desktop.
Save 0GiS0/bc12a94690b387d8e48deae902d8c41d to your computer and use it in GitHub Desktop.
var animals = ['dog', 'cat', 'fish', 'horse', 'lion', 'bird'];
var [dog, , , , lion, ] = animals;
console.log(dog); //dog
console.log(lion); //lion
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment