tor-browser

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

arguments-2.js (158B)


      1 // 'arguments' is lexically scoped in arrow functions
      2 
      3 var args, g;
      4 function f() {
      5    g = () => arguments;
      6    args = arguments;
      7 }
      8 f();
      9 assertEq(g(), args);