Scope 이란? The space in which variables and statements can be accessed. It makes it possible to have variables with the same name without colliding with one another and prevents outer scopes from having access to inner scopes. 3 Types of scope 1) global scope The default scope - only one in the program The top scope that englobes the entire code The declarations inside this space can be accessed ..