tor-browser

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

array-holes-6.js (147B)


      1 // for-of visits each hole in an array full of holes.
      2 
      3 var n = 0;
      4 for (var x of Array(5)) {
      5    assertEq(x, undefined);
      6    n++;
      7 }
      8 assertEq(n, 5);