Skip to content

Instantly share code, notes, and snippets.

@telingadigital
Created February 6, 2018 17:00
Show Gist options
  • Save telingadigital/d6997ef676a5c58905c31e8411a0aee9 to your computer and use it in GitHub Desktop.
Save telingadigital/d6997ef676a5c58905c31e8411a0aee9 to your computer and use it in GitHub Desktop.
Remove Odd number from array Javascript
function removeOdd(arr){
for(var i = arr.length-1; i--;){
if (arr[i]%2 !== 0)
arr.splice(i, 1);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment