Skip to content

Instantly share code, notes, and snippets.

@ceaksan
Last active September 18, 2015 14:12
Show Gist options
  • Save ceaksan/22acbd6469181bb77343 to your computer and use it in GitHub Desktop.
Save ceaksan/22acbd6469181bb77343 to your computer and use it in GitHub Desktop.
function slasher(array, howMany) {
return array.length <= howMany ? [] : howMany < 1 ? array : array.slice(howMany);
}
slasher([1, 2, 3], 2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment