...

/

Variable Scope

Variable Scope

Learn how variables can have local or global scope depending on where they are declared.

We'll cover the following...

We have seen before how the area of the program where a variable can be accessed is called the scope of that variable. Here, we revisit the concept of scope after having introduced functions.

Local vs global scope

Any variable declared inside a function is local to that function, and is not ...