Javascript Identifiers Flashcards

1
Q

often start with a statement identifier to identify the JavaScript action to be performed

A

JavaScript Identifiers

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

are reserved words and cannot be used as variable names (or any other things)

A

Identifiers

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

It is an exit loop or switch

A

Break {}

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

It is a template for JavaScript objects

A

class

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

It declares a variable with a constant value

A

const

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

It allows us to terminate the execution upon a condition in the current iteration

A

continue

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

It is a keyword used in the code to force stop the execution of the code

A

debugger

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

It is executed repeatedly

A

for

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

It decides whether to execute a statement

A

lf else

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

It declares a variable

A

var

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

It is a type of selection control mechanism used for option or choices

A

switch

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

It exits the program in JavaScript console

A

return

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