Keywords Flashcards

1
Q

Break

A

Terminates the current loop, or if in conjunction with a label, terminates the associated statement.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Case

A

Enables the execution of one or more statements when a specified expression’s value matches a label.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Case syntax

A
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.";
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

try…catch…finally Statement

A

Implements error handling for JScript.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

try…catch…finally syntax

A
try
{
    var arr = new Array(-1);
}
catch(e)
{
    print ("Error Message: " + e.message);
    print ("Error Code: " + (e.number & 0xFFFF))
    print ("Error Name: " + e.name);
}
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

class

A

Declares the name of a class as well as a definition of the variables, properties, and methods that comprise the class.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

class syntax

A

class Person{ }

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Constant

A

Declares a constant.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Constant syntax

A

const index = 5;

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Continue

A

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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Debugger

A

Will launch the installed debugger. Acts like a break point.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Delete

A

Deletes a property from an object, removes an element from an array, or removes an entry from an IDictionary object.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

do….while

A

Executes a statement block once, and then repeats execution of the loop until a condition expression evaluates to false

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

do….while syntax

A
do
{
    s +=  i + " ";
    i++;
} while (i < 10);
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

If…..else

A

Conditionally executes a group of statements, depending on the value of an expression.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

If….else

A
var z = 3;
if (x == 5)
    {
    if (y == 6)
        z = 17;
    }
else
    z = 20;
17
Q

export

A

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.

18
Q

extends

A

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.

19
Q

false

A

A Boolean value that represents false.

20
Q

for

A

Executes a block of statements for as long as a specified condition is true.

21
Q

Function

A

Declares a new function. This can be used in several contexts:

22
Q

Syntax declare a function in global scope

A
function functionname([paramlist]) [: type] {
   [body]
}
23
Q

Syntax to declare a method in a class

A

[attributes] [modifiers] function functionname([paramlist]) [: type] {
[body]
}

24
Q

Syntax to declare a method in an interface

A

[attributes] [modifiers] function functionname([paramlist]) [: type]