Skip to content

Instantly share code, notes, and snippets.

@Maciek416
Created June 21, 2011 20:47
Show Gist options
  • Save Maciek416/1038863 to your computer and use it in GitHub Desktop.
Save Maciek416/1038863 to your computer and use it in GitHub Desktop.
for(var i = 0; i < 10; i++){
if(i % 2 == 0) {
console.log("even");
} else {
console.log("odd");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment