• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/46

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

46 Cards in this Set

  • Front
  • Back
A JavaScript item containing an ordered collection of values referenced by a single variable name.
Array
var variable = new array ();
array statement
A JavaScript operator that assigns a value
assignment operator
The most common assignment operator is the "what "?
equal sign =
A JavaScript operator that works on two elements.
binary operator
An expression that can be evaluated as true or false.
Boolean expression
A variable that stores Boolean values(values that are either true or false)
Boolean variable
to run a function
call
(showdate)Today;
showdate would be considered a call
A group of commands set off by curly braces.
command block
A series of commands that preform an action or calculates a values.
function
A function consist of a **** , which identifies its parameters.
function name
**** , which are values used by a function and set commands that are run when the functions are used
parameters
A JavaScript operator that compares the values of one item to the value of another.
comparison operator
==
returns if variables are eqaul to x=y
A programming language in which the source code must be compiled in order to run.
compiled lanuage
A javascript operator that test whether a condition is true and returns values that you specify depending on whether the condition is true or false
conditional operator
a javascript structure to create commands that run only when specific conditions are met.
conditional statement
A javascript item that tracks the number of times the command block within a program loop is run.
counter.
A object which stores a date vaule
date object
To fix a script problem by searching the code to locate the source of the trouble
debug
a java script array that is created within a single statement.
dense array
This was the original name for JavaScript
ECMAScript
An international body responsible for the devolpment of a scripting standard for the Web.
European Computer Manufacturers Association
ECMA
A unary JavaScript operator that increases the value of a variable by 1
increment operator
A programming language in which the source code is converted into an executable application each time it is run and does not require compling
intrepreted langauge
An object oriented interpreted programming language used to add interactivity to web pages.
JavaScript
The internet explorer version of Javascript
Jscript
A Javascript program error that occurs when a script is first loaded by a javascript intrepreter.
load-time error
A javascript program error that is free from syntax and structural mistakes but results in incorrect results
logical error
A JavaScript operator that connects two or more Boolean Expressions.
logical operator
A javascript object used for performing mathematical calculations
Math Objects
An action that can be performed with or on an object
method
A program offered by microsoft for use with its Internet Explorer browser to debug JavaScript programming errors.
Microsoft Script Debugger
Code in which a programs different tasks are broken up into smaller, more manageable chunks.
Modular Code
A variable that has no value
NULL variable
A variable that stores numeric values
numeric variables
A programming language in which tasks are accomplished by manipulating objects.
object oriented programming language
A type of JavaScript element that performs an action within an expression.
operator
A JavaScript structure that contains a set of commands which is repeated until a specified condition is met.
program loop
A JavaScript program error that occurs after a script has been successfully loaded and is being executed.
run-time error
A variable that stores text string
string variable
A JavaScript operator that works on one element.
Unary
A named item in a program information and data.
variable
A scripting language devolped by micorsoft which is sometimes used on the web.
VBSCript
defines a variable, the data type of the variable and, optionally, its initial value.
Declare Statement