chapter - 9 Flashcards

1
Q

is javascript case sensitive?

A

yes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q
what are the following symbols used for in javascript:
//
/*
*/
;
A
//comments, single line
/* single line comment
*/multiple line comment
; used to separate statements
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

what are Identifiers in JavaScript?

A

names assigned to variables, functions, labels.

**1st character should be a letter, underscore or $ sign.

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

what are the Reserved words in JavaScript (words with known meaning in script)?

A

do, if , long, public, try, window, name, prompt.

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