Keywords Flashcards
Break
Terminates the current loop, or if in conjunction with a label, terminates the associated statement.
Case
Enables the execution of one or more statements when a specified expression’s value matches a label.
Case syntax
switch (obj.constructor){ case Date: return "Object is a Date."; break; case Number: return "Object is a Number."; break; case String: return "Object is a String."; break; default: return "Object is unknown.";
try…catch…finally Statement
Implements error handling for JScript.
try…catch…finally syntax
try { var arr = new Array(-1); } catch(e) { print ("Error Message: " + e.message); print ("Error Code: " + (e.number & 0xFFFF)) print ("Error Name: " + e.name); }
class
Declares the name of a class as well as a definition of the variables, properties, and methods that comprise the class.
class syntax
class Person{ }
Constant
Declares a constant.
Constant syntax
const index = 5;
Continue
Stops the current iteration of a loop, and starts a new iteration. For example, if you put in a for loop if the continue is hit it will exit for the loop.
Debugger
Will launch the installed debugger. Acts like a break point.
Delete
Deletes a property from an object, removes an element from an array, or removes an entry from an IDictionary object.
do….while
Executes a statement block once, and then repeats execution of the loop until a condition expression evaluates to false
do….while syntax
do { s += i + " "; i++; } while (i < 10);
If…..else
Conditionally executes a group of statements, depending on the value of an expression.
If….else
var z = 3; if (x == 5) { if (y == 6) z = 17; } else z = 20;
export
The export statement is used when creating JavaScript modules to export functions, objects, or primitive values from the module so they can be used by other programs with the import statement.
extends
Optional. Keyword indicating that the class classname extends baseclass. If this keyword is not used, a standard JScript base class is created that extends System.Object.
false
A Boolean value that represents false.
for
Executes a block of statements for as long as a specified condition is true.
Function
Declares a new function. This can be used in several contexts:
Syntax declare a function in global scope
function functionname([paramlist]) [: type] { [body] }
Syntax to declare a method in a class
[attributes] [modifiers] function functionname([paramlist]) [: type] {
[body]
}
Syntax to declare a method in an interface
[attributes] [modifiers] function functionname([paramlist]) [: type]