Skip to content

Instantly share code, notes, and snippets.

@yakkomajuri
Created July 25, 2020 12:30
Show Gist options
  • Save yakkomajuri/50776b2fc859247d30bebf32b61c9b21 to your computer and use it in GitHub Desktop.
Save yakkomajuri/50776b2fc859247d30bebf32b61c9b21 to your computer and use it in GitHub Desktop.
const arr = [1, 2, 3]
// This:
let [a, b, c] = arr
// Is the same as this:
let a = arr[0], b = arr[1], c = arr[2]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment