Skip to content

Instantly share code, notes, and snippets.

@lior-amsalem
Created October 17, 2021 18:32
Show Gist options
  • Save lior-amsalem/d83c7db18633ca0abe643d84f80ef86f to your computer and use it in GitHub Desktop.
Save lior-amsalem/d83c7db18633ca0abe643d84f80ef86f to your computer and use it in GitHub Desktop.
Simply remove every odd index element in array
function removeEveryOther(arr){
return arr.filter((word, index) => !(index%2));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment