Two types of Comment
- Single Line Comment
- Multi Line Comment

Single Line Comment
Single line comments start with //.
Text between // and the end of the line will be ignored by JavaScript.
// you can assign any type of value
var imvalue = 101;
var imvalue = 101; // assign any type of value
Multi Line Comment
Multi-line comments start with /* and end with /.
Any text between / and */ will be ignored by JavaScript.
Ex: –
/* Comment Here */
Adding // in front of a code line changes the code lines from an executable line to a comment.
var imvalue = 101;
// var imvalue = 101;
Latest posts by rajeshkumar (see all)
- Ansible ERROR! ‘import’ is not a valid attribute for a Play - August 8, 2023
- Ansible Error: module whether to use the yum (yum3) or dnf (yum4) backend}) - August 7, 2023
- Kubernetes Gateway selection for Istio in Knative - August 7, 2023