Comments
You can put comments into JavaScript code, just as you can in CSS:
/*
Everything in between is a comment.
*/
If your comment contains no line breaks, it’s often easier to put it behind two slashes like this:
// This is a comment
You can put comments into JavaScript code, just as you can in CSS:
/*
Everything in between is a comment.
*/
If your comment contains no line breaks, it’s often easier to put it behind two slashes like this:
// This is a comment