Navigation: Self-guided Training > Unit 12: JavaScript as Rule Language
JS Comments
Single line comments start with //
Any text between // and the end of the line will be ignored.
Multi-line comments start with /* and end with */
Any text between these will be ignored.