Comments – A way for programmers to make notes in their code such as documentation, etc. Comments can also be used to ignore code. There are two types of comments:
// This is a comment that occurs on a single line
/*
This A Block comment that may take up several lines
I can format the comment by skipping lines. I can tab, use lines
to separate the text and more
____________________________________________________________
**** The separated text ***
*/