LOCAL VARIABLES

LOCAL VARIABLES

A local variable is created inside a function and cannot be accessed by statements that are outside the function. Different functions can have local variables with the same names because the functions cannot see each other's local variables.

GLOBAL VARIABLES AND CONSTANTS