tor-browser

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

doc-watchpoints.html (400B)


      1 <!DOCTYPE html>
      2 <html>
      3  <script>
      4    function getB(obj) {
      5      debugger;
      6      obj.b;
      7    }
      8  </script>
      9  <script>
     10    const obj = { a: { b: 2, c: 3 }, b: 2 };
     11    debugger;
     12    obj.b = 3;
     13 
     14    obj.a.b = 3;
     15    obj.a.b = 4;
     16 
     17    console.log(obj.b);
     18    obj.b = 4;
     19    obj.b;
     20    obj.b;
     21    debugger;
     22 
     23    getB(obj);
     24    debugger;
     25    obj.b;
     26  </script>
     27 
     28  <body>
     29    Hello World!
     30  </body>
     31 </html>