Skip to content

Instantly share code, notes, and snippets.

@delfick
Created July 11, 2018 12:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save delfick/91228a79fbda29d30c63f000d4afe1e7 to your computer and use it in GitHub Desktop.
Save delfick/91228a79fbda29d30c63f000d4afe1e7 to your computer and use it in GitHub Desktop.
function run() {
for (var i = 0; i < 10; i++) {
var response;
if (i % 2 == 0) {
response = "a";
}
console.log(response)
}
}
run()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment