tor-browser

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

precedence-3.js (111B)


      1 // => binds tighter than , (on the other side)
      2 
      3 var h = (a => a, 13);  // sequence expression
      4 assertEq(h, 13);