1
2
3
4
5
6
7
8
9
10
To practice on your own, or to check code you believe shouldn't have been scored as incorrect, go to CodePen.
0,1,2,3,4,5,6,7,8,9
0
0
0
0
Type the character that ends every statement. | ; | ; | |
Type the 2 characters that are missing in this statement. | alert"You're learning JavaScript!"; | () | ^\(\) |
In JavaScript what is this called? (1 word) | "Hello!" | string | (s|S)tring |
Make up a string. | "Hello!" | •.*• | |
The code displays a box with a message in it. Fill in the blank. | alert("You won!____ | "); | •\); |
The code displays a box with a message in it. Fill in the blank. | ________"You won!"); | alert( | alert\( |
Code an alert that displays the message "Hi" | alert("Hi"); | alert\(•Hi•\); | |
Make up an alert statement displaying any message you like. | alert("Good morning!"); | alert\(•.*•\); | |
|
|||
|