Skip to content

Instantly share code, notes, and snippets.

@shahab570
Created January 2, 2021 18:16
Show Gist options
  • Save shahab570/f5488e36cdaa3ddac5dd8dce019e7918 to your computer and use it in GitHub Desktop.
Save shahab570/f5488e36cdaa3ddac5dd8dce019e7918 to your computer and use it in GitHub Desktop.
var words = ["This", "is", "john", "Doe"];
var [first, ...last] = words;
console.log(last); //["is","john","Doe"];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment