Comments
You can leave messages to readers of your expressions in the form of comments.
You can block out comments with /* and */. For example:
1 + 1 /* This is ignored, but is intended to be helpful to a person reading */
You can also use line comments using //. For example
1 + 1
// This is ignored, but is intended to be helpful to a person reading