JavaScript Comment

codinger 27 Apr 2023 | 7:34 pm JavaScript, JS Comment

JavaScript में Comment कैसे लिखते हैं?

 JavaScript में Comment को लिखने के दो तरीके होते हैं-

 (1.)- Single Line Comment

 (2.)- Multiple Line Comment

 

 1. Single Line Comment-

     JavaScript में Single Line को Comment बनाने के लिए उस लाईन के आगे // लगाते हैं।

     उदाहरण-

 

      <script>

          // document.write("Hello Codinger.in");

      </script>

      2. Multiple Line Comment-

     JavaScript में Multiple Line को Comment बनाने के लिए उस लाईन के शुरूआत में /* और लाईन के अन्त में */ लगाते हैं।

     उदाहरण-

      <script>

    /*    var x = "Learn JavaScript with Codinger.in";

        var y = "Website";

        var z = x + y;

        document.write(z);   */

      </script>

 

Share

Related Posts



Comments:-


Please login to comment..