const a = 1
일때 a를 덮어쓰지 못하게해아 의미가 있는거지

const a = 1
if(true){
const a =3
}
하면 중복 캐치못함

- dc official App