What is the keyword that displays a message box?
alert
Type the character that ends every statement.
;
alert”You’re learning JavaScript!”;
()
A __________ ends in a semicolon.
statement
Code an alert that displays the message “Thanks for everything!”
alert(“Thanks for everything!”);
Code an alert that displays the message “Boo!”
alert(“Boo!”);
The code displays a box with a message in it. Fill in the blank.
______(“You won!”);
alert
The code displays a box with a message in it. Fill in the blank.
alert(“You won!____
”);
Code an alert that displays the message “Hi”
alert(“Hi”);
What are the 5 punctuation characters of an alert statement, in order?
(“”);