Skip to content

Instantly share code, notes, and snippets.

@iddan
Created January 22, 2017 08:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iddan/b3c49802eb766f70e1465f3aa19d70d4 to your computer and use it in GitHub Desktop.
Save iddan/b3c49802eb766f70e1465f3aa19d70d4 to your computer and use it in GitHub Desktop.
Immutable Splice
function splice(array, ...args) {
let newArray = [...array];
newArray.splice(...args);
return newArray;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment