Answers for "comment in JavaScript"

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
8

comment out in javascript

<script type="text/javascript">
<!--
document.write("I have multi-line comments!");
/*document.write("You can't see this!");
document.write("You can't see this!");
document.write("You can't see this!");
document.write("You can't see this!");
document.write("You can't see this!");
document.write("You can't see this!");
document.write("You can't see this!");*/
//-->
</script>
Posted by: Guest on March-02-2020
2

comment in JavaScript

// This is how you comment a single line in JavaScript

/*
This is how you comment
multiple lines in 
JavaScript
*/
Posted by: Guest on December-15-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language