JavaScript: Syntax Flashcards

1
Q

javascript syntax: variable declaration

A

var identifier

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

javascript syntax: variable assignment

A

identifier = value

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

javascript syntax: array literal

A

identifier = [value, value, value]

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

javascript syntax: array constructor

A

new Array(value, value, value)

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

javascript syntax: array indexing

A

array[index]

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

javascript syntax: array index assignment

A

array[index] = value

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