Lesson 9 JavaScript - Syntax
Lesson 9 JavaScript - Syntax
JavaScript can be implemented using JavaScript statements that are placed within the <script>... </script> HTML tags in a
web page, it connotes JavaScript..
You can place the <script> tags, containing your JavaScript, anywhere within you web page, but it is normally recommended
that you should keep it within the <head> tags.
The <script> tag alerts the browser program to start interpreting all the text between these tags as a script. A simple syntax
of your JavaScript will appear as follows.
<script ...>
JavaScript code
</script>
This function can be used to write text, HTML, or both. Take a look at the following code.
1|Page
Web Page Programming (Using HTML and JavaScript)
<html>
<body>
<script language="javascript" type="text/javascript">
<!--
document.write ("Hello World!")
//-->
</script>
</body>
</html>
Hello World!
2|Page
Web Page Programming (Using HTML and JavaScript)
But when formatted in a single line as follows, you must use semicolons:
Case Sensitivity
JavaScript is a case-sensitive language. This means that the language keywords, variables, function names, and any other
identifiers must always be typed with a consistent capitalization of letters.
So the identifiers Time and TIME will convey different meanings in JavaScript.
NOTE: Care should be taken while writing variable and function names in JavaScript.
Comments in JavaScript
JavaScript supports both C-style and C++-style comments. Thus:
-Any text between a // and the end of a line is treated as a comment and is ignored by JavaScript.
-Any text between the characters /* and */ is treated as a comment. This may span multiple lines.
-JavaScript also recognizes the HTML comment opening sequence <!--. JavaScript treats this as a single-line comment, just as
it does the // comment.
-The HTML comment closing sequence --> is not recognized by JavaScript so it should be written as //-->.
Example
The following example shows how to use comments in JavaScript.
3|Page