Skip to content

Instantly share code, notes, and snippets.

@dmidlo
Created November 23, 2015 04:59
Show Gist options
  • Save dmidlo/d54f23b9407547f0d21c to your computer and use it in GitHub Desktop.
Save dmidlo/d54f23b9407547f0d21c to your computer and use it in GitHub Desktop.
function slashArray(arr, howMany) {
//cuts first N elements from array. N === howMany
return(arr.slice(howMany));
}
slashArray([1, 2, 3], 0);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment