Level 38
Level 40
4 words 0 ignored
Ready to learn
Ready to review
Ignore words
Check the boxes below to ignore/unignore words, then click save at the bottom. Ignored words will never appear in any learning session.
Ignore?
scope
the set of variables, objects, and functions you have access to
become LOCAL to the function
variables declared within a function
Local variables
function functionName(); var variableName = assignedValue; // local scope
Global variables
a variable declared outside a function