0612 #01. 자바스크립트 알고리즘 스터디 문제 풀며 필요 개념 정리 1. var, const, let const, let은 ES6 문법이며 var는 ES6 이전의 문법이다. var 는 {} 단위의 scope이 아닌 function 단위의 scope을 가진다. var : 같은 변수를 두번 선언했는데도 오류가 나지 않음 ;;;;;; => 많은 오류 발생 보통 프로그래밍 언어들이 가지는 변수 scope과 다름. var hello = "hello world"; var hello = "bye world" console.log(hello); // bye world const: constance의 약자. 한번 선언된 상수의 값을 변경 할 수 없다. const hello = 'hello'; hello = 'cha..