Answers for "js 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

comment in javascript

// javascript comment
Posted by: Guest on October-09-2021
26

comment in javascript

// single line comment 

/* multiline comemnt 
line 2
line 3
line 4 */
Posted by: Guest on July-18-2020
5

js comment

//This does not effect the code.
var something = "But this does effect the code!";
Posted by: Guest on June-21-2020
0

js comment

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

Code answers related to "Javascript"

Browse Popular Code Answers by Language