Skip to content

Instantly share code, notes, and snippets.

@hughfdjackson
Created April 1, 2013 11:39
Show Gist options
  • Select an option

  • Save hughfdjackson/5284482 to your computer and use it in GitHub Desktop.

Select an option

Save hughfdjackson/5284482 to your computer and use it in GitHub Desktop.
var arrSplit = function(arr, i){
return [arr.slice(0, i), arr.slice(i)]
}
arrSplit([1, 2, 3, 4, 5], 1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment