Skip to content

Instantly share code, notes, and snippets.

@ralts00
Created October 21, 2016 01:13
Show Gist options
  • Save ralts00/1ddec30753537b9599aeff2effc715ab to your computer and use it in GitHub Desktop.
Save ralts00/1ddec30753537b9599aeff2effc715ab to your computer and use it in GitHub Desktop.
null created by ralts00 - https://repl.it/ECUw/1
var arr = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10];
for (i=arr.length-1; i >=0 ; i--){
if ((arr[i] % 2 == 0 || arr[i] % 2 != 0) && arr[i] == 5){
console.log(arr[i]);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment