Lesson 17 JavaScripts
Lesson 17 JavaScripts
Objectives:
learn about JavaScript
o JavaScript Comments
Outcomes:
Knowledge on the basic JS concepts
Notes:
Multi-line Comments
Multi-line comments start with /* and end with */.
Any text between /* and */ will be ignored by JavaScript.
This example uses a multi-line comment (a comment block) to
explain the code:
It is most common to use single line comments.
Block comments are often used for formal documentation.
--------------------------------------END OF
LESSON----------------------------------------------