tor-browser

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

array-holes-5.js (151B)


      1 // for-of does not skip trailing holes; the value is undefined.
      2 
      3 var log = "";
      4 for (var x of [1, 2, 3,,])
      5    log += x;
      6 assertEq(log, "123undefined");