Skip to content

Instantly share code, notes, and snippets.

@JoanMora
Forked from koozdra/headtail.js
Created July 13, 2021 11:02
Show Gist options
  • Save JoanMora/947f785aa1876a3696e3d875b18b3140 to your computer and use it in GitHub Desktop.
Save JoanMora/947f785aa1876a3696e3d875b18b3140 to your computer and use it in GitHub Desktop.
head and tail destructuring in javascript
const [head, ...tail] = [1,2,3];
// head 1
// tail [2,3]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment