Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 8th, 2012  |  syntax: None  |  size: 0.31 KB  |  hits: 16  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. function dieOnFirstJump() {
  2.   var lives = 0;
  3.  
  4.   while (true) {
  5.     lives += 1;
  6.  
  7.     if (lives % 100 === 0) {
  8.       console.log("Life " + lives);
  9.     }
  10.  
  11.     if (Math.floor(Math.random() * 100000) === 1) {
  12.       console.log("It took you " + lives + " to die on the first jump");
  13.       break;
  14.     }
  15.   }
  16. }
  17.  
  18. dieOnFirstJump();