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 followed by a semicolon.
KEYWORDS
JavaScript uses the following keywords. They cannot be used in any other way.break false if return with continue for in this while else function null true varThe following keywords are reserved for future use: abstract const float native default goto new switch
implements package synchronized byvalue private threadsafe case double throw catch extends int char final interface short class finally long static
super byte do instanceof public try void boolean
delete import protected transient
STATEMENT REFERENCE
This section provides an alphabetical reference to statements in the JavaScript language.SYNTAX CONVENTIONS
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 curly braces.break
The break statement terminates the current while or for loop and transfers program control to the statement following the terminated loop.SYNTAXbreak;
EXAMPLE
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
Comments are notations by the author to explain what the script does, and they are ignored by the interpreter. JavaScript supports Java-style comments on a single line preceded by a double-slash (//) and comments on multiple lines when the first line begins with a /* and the last line ends with a */.SYNTAX// comment textor
/* multiple line comment text */EXAMPLE
// This is a single-line comment.
/* This is a multiple-line comment. It can be of any length, andyou can put whatever you want here. */continue
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: In a while loop, it jumps back to the condition. In a for loop, it jumps to the update expression.SYNTAX
continueEXAMPLE
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;}for loop
A for loop consists of three optional expressions, enclosed in parentheses and separated bysemicolons, followed by a block of statements executed in the loop. The parts of the for statement are:
The initial expression, generally used to initialize a counter variable. This statement may optionally declare new variables with the var keyword. This expression is optional.
The condition that is is evaluated on each pass through the loop. If this condition is true, the statements in the succeeding block are performed. This conditional test is optional. If omitted then the condition always evaluates to true.
An update expression generally used to update or increment the counter variable. Thisexpression is optional. A block of statements that are executed as long as the condition is true. This can be a single statement or multiple statements. Although not required, it is good practice to indent these statements four spaces from the beginning of the for statement.SYNTAX
for ([initial expression;] [condition;] [update expression]) { statements}
initial expression = statement | variable declarationEXAMPLE
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);}for...in
The for statement iterates variable var over all the properties of object obj. For each distinct property, it executes the statements in statements.SYNTAXfor (var in obj) { statements }EXAMPLE
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 = \"\" for (i in obj)
result += obj_name + \".\" + i + \" = \" + obj[i] +\"\\n\"
return result;}function
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. 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 by the calling function.SYNTAX
function name([param] [, param] [...,param]) {
statements }EXAMPLE
//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}if...else
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.SYNTAXif (condition) { statements} [else {
else statements}]EXAMPLE
if ( cipher_char == from_char ) { result = result + to_char; }else {
result = result + clear_char;}return
The return statement specifies the value to be returned by a function.SYNTAXreturn expression;EXAMPLE
The following simple function returns the square of its argument, x, where x is a number.function square( x ) { return x * x;}this
Use this to refer to the current object in a method.SYNTAX
this.propertyEXAMPLE
If setcolor is a method of an object (say, car), then this refers to the specific object that calls setcolor.
function setcolor(color) { oldcolor = this.color; this.color = color; return oldcolor;}
The method then sets a new color for an object when called as follows:car.setcolor(\"blue\");
var
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 is optional; you can declare a variable by simply assigning it a value. However, it is good style to use var, and it may be 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.SYNTAX
var varname [= value] [..., varvarname [= value] ]EXAMPLE
var num_hits = 0, var cust_no = 0while
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 in a while loop four spaces from the beginning of the for statement.SYNTAXwhile (condition) { statements}EXAMPLE
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 first pass: x = 1 and n = 1 After second pass: x = 2 and n = 3 After third pass: x = 3 and n = 6
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;}with
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.SYNTAXwith object{statements}
EXAMPLE
with request {
support_level = protocol; lookup(ip);}
This example uses the properties protocol and ip of the request object
因篇幅问题不能全部显示,请点此查看更多更全内容