Skip to content

Instantly share code, notes, and snippets.

@bhushangoel
Created December 13, 2020 06:25
Show Gist options
  • Save bhushangoel/9b4a64216fc47d631e026355037d0cac to your computer and use it in GitHub Desktop.
Save bhushangoel/9b4a64216fc47d631e026355037d0cac to your computer and use it in GitHub Desktop.
let arr = [1,2,3,4,5];
console.log(arr.slice(1)); // [2,3,4,5]
console.log(arr); // [1,2,3,4,5]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment