var a = 10;
function test() {
    console.log(a);
    var a = 20;
    console.log(a);
}
test();

이거 결과값 ㅈㄴ 신기함.

변수한테 호이스팅을 왜했는지 ㅋㅋ