Line 4 has a special HTML tag <script> that starts a section of JavaScript code.
Notice that the type="text/javascript" attribute indicates that the script contained in the tag
is a JavaScript.
Line 5 is the only JavaScript statement in this HTML document, which calls the write() function
of the built-in object "document". This call will output the string "Hello World!" into the HTML document.
Line 6 ends the JavaScript code.
When the Web browser processes this HTML document, it will interpret all JavaScript statements
within the <script>.