Skip to content

Instantly share code, notes, and snippets.

@davidep87
Last active February 2, 2017 14:24
Show Gist options
  • Save davidep87/4985f8e37efeac9ad9aff5334b4ec48a to your computer and use it in GitHub Desktop.
Save davidep87/4985f8e37efeac9ad9aff5334b4ec48a to your computer and use it in GitHub Desktop.
function deleteElement(elem, array){
let _array = [];
for (let i = 0; i < array.length; i++) {
if(array[i] != elem){
_array.push(array[i]);
}
}
return _array;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment