Level 38 Level 40
Level 39

[No Typing] Scope


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.

All None

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