"Syntax"ing time!
Logically speaking...
Forms and elements
Functions
HTML and JavaScript
100
This kind of value is exactly what it says it is.
What is a literal?
100
This type of variable or expression can have only two values.
What is a Boolean?
100
The type of statement that creates a box, wherein the user has to click OK to proceed.
What is "an alert statement"?
100
A function that is called when the user clicks a button.
What is an onClick() function?
100
These are the tags used to indicate to the browser to expect JavaScript.
What are SCRIPT and /SCRIPT tags?
200
This is how to write multi-line comments and how to write single-line comments.
What is "using /* and */ for multi-line and // for single-line"?
200
This statement gives the computer a choice between two paths.
What is "an if-else statement"?
200
When you use this statement, a box pops up wherein the user gets to click "OK" or "Cancel" to proceed.
What is "the confirm statement"?
200
The function that is called when the user submits an HTML form.
What is "onSubmit()"?
200
JavaScript was originally designed to execute here.
What is "within a web browser"?
300
This is a set of one or more key/value pairs.
What is an Object?
300
The difference between the for loop and the while loop is this.
What is "the for loop is a definite loop and the while loop is an indefinite loop"?
300
This pops up a box wherein the user can enter a value that can be used in the program.
What is "a prompt box"?
300
This function converts a String to a Number.
What is "parseInt()"?
300
This is where the JavaScript is placed in an HTML document.
What is within the HEAD section or BODY section?
400
The number of bugs in this code: String b = "Bug"; bug = b; "Bug" = b + bug;
What is "Three. Bug the String, bug the variable and the syntax error on line 3 also called a bug"?
400
It is annoying when you get NaN but this is what it means.
What is "the program used a non-number for numerical calculation"?
400
This statement can be used for entering data typed into a box on an HTML form.
What is "a text box"?
400
The values passed to a function are called these.
What are arguments or parameters?
400
This is when JavaScript executes.
What is "upon the HTML document loading"?
500
The values of x, y and z after the execution of the three lines of code below: var x = 5, y = 6, z; y++; z = y;
What is "x equals 5, y equals 7, and z equals 7".
500
The difference between a single "=", a double "==" and triple "===" is this.
What is "= stands for assignment, == stands for equality comparison and === stands for exact comparison"?
500
These are two ways of providing multiple choices on the HTML form.
What are "radio buttons and check boxes"?
500
The value that the function calculates is sent back using this statement.
What is "a return() statement"?
500
The purpose of using a .js file instead of inline code in the HTML is...
What is "to avoid writing the same code on every page"?
M
e
n
u