Comments
Sometimes you want to add a note along with your code to explain it to the person coming after you. That’s what comments are for.
Single line comments
Single line comments start with //
and is in effect until the end of the
current line.
Multi Line comments
Comments can span across lines if you start with /*
and end with */
.
Anything between those markers is considered a comment.