Skip to content

Instantly share code, notes, and snippets.

@joeygreen
Created February 9, 2017 18:56
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 joeygreen/79ef6c356a86c55dea538263cff9c8f6 to your computer and use it in GitHub Desktop.
Save joeygreen/79ef6c356a86c55dea538263cff9c8f6 to your computer and use it in GitHub Desktop.
var g = 'Galileo';
for (i = 0; i < 5; i++){
if (i % 2 == 0) { console.log(g.toUpperCase()); }
else { console.log(g.toLowerCase()); }
if (i == 4) { console.log("Figaro!"); }
};
console.log('Magnifico!');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment