변수(Variable) - 데이터(정보)를 담을 스 메모리 공간의 이름 변수 선언(declaration) - 어떤 타입의 데이터를 담을 수 있는 메모리 공간을 활당해달라고 명령하는 것 변수 유효범위(scope) : 선언된 변수가 메모리에서 삭제되지 않고 영향을 미칠 수 있는 코드 범위 ES6가 나오기 전 변수 선언 var1) 변수 스코프는 함수 레벨이라서 함수가 끝나는 순간 변수를 사용하지 못했습니다.function testVar() { var message = "Hello, World!"; console.log(message); // 출력: Hello, World!}testVar();console.log(message); // ReferenceError: message is not define..