tor-browser

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

array-join-bug1137624-2.js (144B)


      1 function f() {
      2    var x = 0;
      3    var a = [{toString: () => x++}];
      4    for (var i=0; i<10000; i++)
      5 a.join("");
      6    assertEq(x, 10000);
      7 }
      8 f();