tor-browser

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

return-2.js (179B)


      1 // return exits the innermost enclosing arrow (not an enclosing function)
      2 
      3 function f() {
      4    var g = x => { return !x; };
      5    return "f:" + g(true);
      6 }
      7 
      8 assertEq(f(), "f:false");