5.2 JavaScript Comments
Comments can be added to explain the JavaScript, or to make it more readable Single line comments start with//. Multi line comments start with/*and end with*/. This example uses a multi line comment to explain the code: <html> <head> <script type = “text/javascript”> //this is a single line comment /* The code below will write
more..