Chapter 3 Key Terms Flashcards
Array
A set of data represented by a single variable name.
Array Literal
A single statement that declares an array variable and its content.
Browser Test
A conditional statement that tests whether a feature of the JavaScript language is supported by the browser.
Callback Function
A function that is passed as a parameter to another function or method.
Conditional Statement
A special type of JavaScript statement used for making decisions.
Controlling Flow
Changing the order in which JavaScript code is executed.
Counter
A variable that is incremented or decremented with each iteration of a program loop.
Decision Making
The process of choosing which code to execute at a given point in an application.
Decision-making statement
A special type of JavaScript statement used for making decisions.
Decision-making structure
A special type of JavaScript statement used for making decisions.
Element
An individual value contained in an array or a page object marked within an HTML file.
Fallthrough
A situation in which execution of a switch statement does not stop after the statements for a particular case label are executed, but continues evaluating the rest of the case labels in the list.
HTML Collection Project
A group of HTML elements within the Document Object Model.
Index
A number associated with an element in an array, which represents the element’s position within the array.
Infinite Loop
A program loop than repeats without end.