chapter - 9 Flashcards
1
Q
is javascript case sensitive?
A
yes
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
3
Q
what are Identifiers in JavaScript?
A
names assigned to variables, functions, labels.
**1st character should be a letter, underscore or $ sign.
4
Q
what are the Reserved words in JavaScript (words with known meaning in script)?
A
do, if , long, public, try, window, name, prompt.