Answers for "javascript comment"

32

javascript comment

//This is a javascript single line comment

/*
And here is a
multiline comment
*/
Posted by: Guest on June-27-2019
4

javascript comment

// Javascript comment single line
/* Javascript comment 
	multiline */

/* CSS comment 
	any line */

<!-- HTML comment
 	any line -->
Posted by: Guest on April-19-2021
1

comments in js

// comment sigle line
Posted by: Guest on August-11-2020
1

javascript comment

// For single line comment

/* For block of lines comment
...
...
*/
Posted by: Guest on March-01-2021
0

js comment

/* text*/
Posted by: Guest on May-19-2021
0

javascript comment

// Change heading:

document.getElementById("myH").innerHTML = "My First Page";


// Change paragraph:

document.getElementById("myP").innerHTML = "My first paragraph.";
Posted by: Guest on May-06-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language