Skip to content

Instantly share code, notes, and snippets.

@Hoxtygen
Last active December 7, 2016 13:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Hoxtygen/0280c501c4cea600d1e9fcb05e756dc4 to your computer and use it in GitHub Desktop.
Save Hoxtygen/0280c501c4cea600d1e9fcb05e756dc4 to your computer and use it in GitHub Desktop.
function slasher(arr, howMany) {
// it doesn't always pay to be first
arr = arr.slice(howMany);
return arr;
}
slasher([1, 2, 3], 2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment