Skip to content

Instantly share code, notes, and snippets.

@pporche87
Created April 18, 2017 00:59
Show Gist options
  • Save pporche87/64c8450aaf348c2a7a45a0db077793df to your computer and use it in GitHub Desktop.
Save pporche87/64c8450aaf348c2a7a45a0db077793df to your computer and use it in GitHub Desktop.
let slice = (array, start, end) => {
let origArray = array,
slicedArray = []
for(let i = origArray[start-1]; i < end; i++) {
slicedArray.push(origArray[i])
}
return slicedArray
}
module.exports = slice
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment