Skip to content

Instantly share code, notes, and snippets.

@austinbv
Created July 14, 2012 05:02
Show Gist options
  • Select an option

  • Save austinbv/3109291 to your computer and use it in GitHub Desktop.

Select an option

Save austinbv/3109291 to your computer and use it in GitHub Desktop.
console.log(new Date);
var x = 0;
(function timeCheck() {
if (x == 3) Date = 'swear jar';
setTimeout(function(){
console.log('go go power rangers');
setTimeout(timeCheck, 0);
}, 1000);
x++;
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment