Skip to content

Instantly share code, notes, and snippets.

@Reiqu
Created April 22, 2020 13:18
Show Gist options
  • Save Reiqu/cfc60ff6b920b29bfeca449ad1a38fb9 to your computer and use it in GitHub Desktop.
Save Reiqu/cfc60ff6b920b29bfeca449ad1a38fb9 to your computer and use it in GitHub Desktop.
remove items from array
function remove(index, array) {
let firstPart = array.slice(0, index);
let secondPart = array.slice(index +1);
for (let element = 0; element < secondPart.length; element++) {
firstPart.push(secondPart[element]);
}
return firstPart;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment