Skip to content

Instantly share code, notes, and snippets.

Created April 6, 2017 04:32
Show Gist options
  • Save anonymous/16ca0c68f2a493e54387f03a24511977 to your computer and use it in GitHub Desktop.
Save anonymous/16ca0c68f2a493e54387f03a24511977 to your computer and use it in GitHub Desktop.
1.3 CleanCode created by smillaraaq - https://repl.it/GtNN/3
function aFunction(num){
for(var i=0; i<num; i++){
if(i%2 === 0){
console.log("is even!");
}else{
console.log("is odd!");
}
console.log("current number is ", i);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment