tor-browser

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

script.js (428B)


      1 // Single line comment <<=== this is line 1
      2 console.log("body instruction");
      3 /* Multi 
      4 * line
      5 * comment
      6 */
      7 function bodyFunction() {
      8  // Inline comment
      9  /* Inline
     10   * multiline comment
     11   */
     12  function inlineFunction() {
     13    console.log("nested instruction");
     14  }
     15  const inlineCount = 1;
     16  let inlineLet = 2;
     17  var inlineVar = 3;
     18  console.log("inline instruction");
     19 }
     20 const bodyCount = 1;
     21 let bodyLet = 2;
     22 var bodyVar = 3;