{}을 기준으로 밖에서 선언한 변수(Global variable)는 {}안에서나 밖에서나 상관없이 사용 가능하다.{}안에서 선언한 변수(Local variable)는 {}밖에서 사용 불가하다.// Local scope & Global scope
let globalMsg = 'global'; // global variable 선언
function printMsg() {
    let localMsg = 'local'; // {}안에서 local variable 선언
    console.log(localMsg); // local
    console.log(globalMsg); // global
}
console.log(globalMsg); // global
console.log(localMsg); // error: localMsg is not defined