tor-browser

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

simple3.js (246B)


      1 function simple() {
      2  const obj = { foo: 1, bar: 2 };
      3  const func = foo(3, 4);
      4  const result = func();
      5  return result;
      6 }
      7 
      8 function nestedA() {
      9  nestedB();
     10 }
     11 
     12 function nestedB() {
     13  nestedC();
     14 }
     15 
     16 function nestedC() {
     17  debugger;
     18  return 1;
     19 }