Skip to content

Instantly share code, notes, and snippets.

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