Skip to content

Instantly share code, notes, and snippets.

@shahab570
Created January 1, 2021 15:35
Show Gist options
  • Save shahab570/ad8f32b89a0a8ae91fce911e4cffb401 to your computer and use it in GitHub Desktop.
Save shahab570/ad8f32b89a0a8ae91fce911e4cffb401 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