tor-browser

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

bug624041-2.js (148B)


      1 var s = '';
      2 
      3 var a = [, 0, 1];
      4 for (var i in a) {
      5    a.reverse();
      6    s += i + ',';
      7 }
      8 
      9 // Index of the element with value '0'.
     10 assertEq(s, '1,');