WorksheetsJavaScript and HTML review
Total questions: 20
Worksheet time: 10mins
In JavaScript, what symbol is used to indicate the end of a statement?
* asterisk symbol
# hash tag symbol
: colon symbol
; semicolon symbol
How can a developer show a pop-up message to the user?
alert
prompt
console.log
<p> tag
What is a variable
Store values in containers so we can use them later.
Store values in containers so we can use them never.
Store values in containers so we can use them once.
Store values in containers so we can't use them later.
x++;
Repeat something 10 times
repeat 10
for (var i=0; i<10; i++)
repeat { } until 10;
while (i = 10)
What is an array?
A tag element
An index
A sea creature
ordered list of items like numbers, text, and more
Which of the following is the correct syntax for making an array in javascript?
variable myArray = ["hi","hello","hey"];
var my array = ["hi,"hello","hey];
var myArray = [hi,hello,hey];
var myArray = ["hi","hello","hey"];
Which of the following is NOT a valid component of a function declaration?
Function keyword
Function name
Pair of Square Braces
Pair of Curly Braces
