javascript comment

Solutions on MaxInterview for javascript comment by the best coders in the world

showing results for - "javascript comment"
Emmanuel
07 Oct 2016
1//This is a javascript single line comment
2
3/*
4And here is a
5multiline comment
6*/
Mohamed-Ali
22 Jul 2018
1// Javascript comment single line
2/* Javascript comment 
3	multiline */
4
5/* CSS comment 
6	any line */
7
8<!-- HTML comment
9 	any line -->
Alexia
05 Apr 2018
1// For single line comment
2
3/* For block of lines comment
4...
5...
6*/
Julia
11 Jun 2017
1
2// Change heading:
3
4document.getElementById("myH").innerHTML = "My First Page";
5
6
7// Change paragraph:
8
9document.getElementById("myP").innerHTML = "My first paragraph.";
10