tor-browser

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

head-init-var-check-empty-inc-empty-syntax.js (308B)


      1 // Copyright 2019 Mike Pennisi.  All rights reserved.
      2 // This code is governed by the BSD license found in the LICENSE file.
      3 
      4 /*---
      5 description: For head may omit optional expressions
      6 es5id: 12.6.3_A9
      7 ---*/
      8 
      9 var supreme=5;
     10 
     11 for(var count=0;;) {if (count===supreme)break;else count++; }
     12 
     13 reportCompare(0, 0);