Skip to content

Instantly share code, notes, and snippets.

@shortcircuit3
Created June 25, 2013 17:50
Show Gist options
  • Save shortcircuit3/5860635 to your computer and use it in GitHub Desktop.
Save shortcircuit3/5860635 to your computer and use it in GitHub Desktop.
var i = 0;
var f = 'F',
u = 'U',
c = 'C',
k = 'K';
setInterval(function(){
console.log(f + u + c + k);
f += 'F';
u += 'U';
c += 'C';
k += 'K';
i++;
},1000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment