Skip to content

Instantly share code, notes, and snippets.

@shahab570
Created January 1, 2021 15:36
Show Gist options
  • Save shahab570/a4d4cdcebe2aca43625d91d779a6c77b to your computer and use it in GitHub Desktop.
Save shahab570/a4d4cdcebe2aca43625d91d779a6c77b to your computer and use it in GitHub Desktop.
let country =["USA","CANADA","GERMANY"];
let [usa,...other] = country;
console.log(usa); //USA
console.log(other); //["CANADA","GERMANY"];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment