Skip to content

Instantly share code, notes, and snippets.

@svahora
Created July 12, 2015 21:42
Show Gist options
  • Save svahora/033e4071734dcfc3ab83 to your computer and use it in GitHub Desktop.
Save svahora/033e4071734dcfc3ab83 to your computer and use it in GitHub Desktop.
function slasher(arr, howMany) {
if(arr.length > howMany) {
arr = arr.splice(howMany);
} else {
arr = [];
}
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