tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

testWhileWithContinue.js (195B)


      1 // Test using 'while' with 'continue' -- the most ancient, the most powerful,
      2 // the most rare of all coding incantations.
      3 
      4 var i = 0;
      5 while (i < 12) {
      6    ++i;
      7    continue;
      8 }
      9 assertEq(i, 12);