CHAPTER - 4
Comments in JavaScript
In case you don't want the javascript engine to execute a certain part of your code, you can comment.
There are two types of comments which you can use in JavaScript.
// This is a single-line comment
/*
This is
Multi
Line
Comments
*/
Comments
Post a Comment