JavaScript Statements
JavaScript is a sequence of statements to be executed by the
browser.
JavaScript Statements
A JavaScript statements is a command to the browser. The purpose of the
command is to tell the browser what to do.
This JavaScript statement tells the browser to write "Hello Dolly" to the web
page:
document.write("Hello Dolly");
|
It is normal to add a semicolon at the end of each executable statement. Most
people think this is a good programming practice, and most often you will see
this in JavaScript examples on the web.
The semicolon is
optional (according to the JavaScript standard), and the browser is supposed to
interpret the end of the line as the end of the statement. Because of this you
will often see examples without the semicolon at the end.
Note: Using semicolons makes it possible to write multiple statements
on one line.
JavaScript Code
JavaScript code (or just JavaScript) is a sequence of JavaScript statements.
Each statement is executed by the browser in the sequence they are written.
This example will write a header and two paragraphs to a web page:
<script type="text/javascript">
document.write("<h1>This is a header</h1>");
document.write("<p>This is a paragraph</p>");
document.write("<p>This is another paragraph</p>");
</script>
|
Try it yourself.
JavaScript Blocks
JavaScript statements can be grouped together in blocks.
Blocks start with a left curly bracket {, and ends with a right curly bracket
}.
The purpose of a block is to make the sequence of statements execute together.
This example will write a header and two paragraphs to a web page:
<script type="text/javascript">
{
document.write("<h1>This is a header</h1>");
document.write("<p>This is a paragraph</p>");
document.write("<p>This is another paragraph</p>");
}
</script>
|
Try it yourself.
The example above is not very useful. It just demonstrates the use of a
block. Normally a block is used to group statements together in a function or in
a condition (where a group of statements should be executed if a condition is
met).
You will learn more about functions and conditions in later chapters.
 |
 |
 |
 |
|
The Ektron Intranet
lets you do everything you need to do on your corporate intranet and everything you want to do... all with just one application.
What can you do with the Ektron Intranet? |
 |
Navigate through content, documents, assets, colleagues and workgroups quickly and intuitively with enterprise search |
 |
Communicate with friends and colleagues with forums, message boards and corporate blogging using the new Social Networking Platform |

|
Utilize the extensive out-of-the box features or customize your site through Ektron CMS400.NET's open architecture |
 |
Promote collaboration in your organization through project workspaces where others can efficiently find information and work together |
 |
Author/edit content, manage navigation, menus, audit trails, workflow and approvals with the best in breed Content Management |
|
|
|
|
See why there are 20,000+ Ektron integrations worldwide.
|
|
 |
TAKE THE VIDEO TOUR |
 |
or download a FREE TRIAL today. |
|