JavaScript statements consist of keywords used with the appropriate syntax. A single statement may span multiple lines. Multiple statements may occur on a single line if each statement is separated by a semi-colon.
Syntax conventions: All keywords in syntax statements are in bold. Words in italics represent user-defined names or statements. Any portions enclosed in square brackets, i.e. [ and ], are optional. {statements} indicates a block of statements, which can consist of a single statement or multiple statements delimited by a curly braces.
The following statements are available in JavaScript:
|
|
The break statement terminates the current while or for loop and transfers program control to the statement following the terminated loop.
break
The following function has a break statement that terminates the while loop when i is 3, and then returns the value 3 * x.
function func(x) { var i = 0; while (i < 6) { if (i == 3) break; i++; } return i*x; }
Comments are notations by the author to explain what the script does, and they are ignored by the interpreter. JavaScript supports Java-style comments:
1. // comment text 2. /* multiple line comment text */
// This is a single-line comment.
/* This is a multiple-line comment. It can be of any length, and you can put whatever you want here. */
The continue statement terminates execution of the block of statements in a while or for loop, and continues execution of the loop with the next iteration. In contrast to the break statement, it does not terminate the execution of the loop entirely: instead,
continue
The following example shows a while loop that has a continue statement that executes when the value of i is 3. Thus, n takes on the values 1, 3, 7, and 12.
i = 0; n = 0; while (i < 5) { i++; if (i == 3) continue; n += i; }
A for loop consists of three optional expressions, enclosed in parentheses and separated by semicolons, followed by a block of statements executed in the loop. The parts of the for statement are:
for ([initial expression]; [condition]; [update expression]) { statements } initial expression = statement | variable declartion
This simple for statement starts by declaring the variable i and initializing it to zero. It checks that i is less than nine, and performs the two succeeding statements, and increments i by one after each pass through the loop.
for (var i = 0; i < 9; i++) { n += i; myfunc(n); }
The for statement iterates variable var over all the properties of object obj. For each distinct property, it executes the statements in statements.
for (var in obj) { statements }
The following function takes as its argument an object and the object's name. It then iterates over all the object's properties and returns a string that lists the property names and their values.
function dump_props(obj, obj_name) { var result = "", i = ""; for (i in obj) result += obj_name + "." + i + " = " + obj[i] + "\n"; return result; }
The function statement declares a JavaScript function name with the specified parameters param. To return a value, the function must have a return statement that specifies the value to return. You cannot nest a function statement in another statement or in itself.
All parameters are passed to functions, by value. In other words, the value is passed to the function, but if the function changes the value of the parameter, this change is not reflected globally or in the calling function.
function name([param] [, param] [..., param]) { statements }
//This function returns the total dollar amount of sales, when //given the number of units sold of products a, b, and c. function calc_sales(units_a, units_b, units_c) { return units_a*79 + units_b*129 + units_c*699 }
The if...else statement is a conditional statement that executes the statements in statements if condition is true. In the optional else clause, it executes the statements in else statements if condition is false. These may be any JavaScript statements, including further nested if statements.
if (condition) { statements } [else { else statements }]
if ( cipher_char == from_char ) { result = result + to_char; x++ } else result = result + clear_char;
The return statement specifies the value to be returned by a function.
return expression;
The following simple function returns the square of its argument, x, where x is an number.
function square( x ) { return x * x; }
The var statement declares a variable varname, optionally initializing it to have value. The variable name varname can be any legal identifier, and value can be any legal expression. The scope of a variable is the current function or, for variables declared outside a function, the current application.
Using var outside a function is optional; you can declare a variable by simply assigning it a value. However, it is good style to use var, and it is neccessary in functions if there is a global variable of the same name. So, in general, it is a good idea to always use var, but you should definitely use it when declaring a local variable in a function, to ensure that any global variable of the same name does not override it.
var varname [= value] [..., varname [= value] ]
var num_hits = 0, cust_no = 0
The while statement is a loop that evaluates the expression condition,and if it is true, executes statements. It then repeats this process, as long as condition is true. When condition evaluates to false, execution continues with the next statement following the statements.
Although not required, it is good practice to indent the statements a while loop four spaces from the beginning of the for statement.
while (condition) { statements }
The following simple while loop iterates as long as n is less than three. Each iteration, it increments n and adds it to x. Therefore, x and n take on the following values
After completing the third pass, the condition n < 3 is no longer true, so the loop terminates.
n = 0; x = 0; while( n < 3 ) { n ++; x += n; }
The with statement establishes object as the default object for the statements. Any property references without an object are then assumed to be for object. Note that the parentheses are required around object.
with (object){ statements }
with (Math) { a = PI * r*r x = r * cos(theta) y = r * sin(theta) }