Skip to content

Instantly share code, notes, and snippets.

@bytao7mao
Last active July 26, 2017 14:48
Show Gist options
  • Save bytao7mao/68115979636f8ee594bee637460a1220 to your computer and use it in GitHub Desktop.
Save bytao7mao/68115979636f8ee594bee637460a1220 to your computer and use it in GitHub Desktop.
function slasher(arr, howMany) {
// Return string after the amount chopped off.
return arr.slice(howMany);
}
slasher([1, 2, 3], 1);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment