js variable(변하기 쉬운)const 사용\-> const=constant(상수)이기 때문에 값이 바뀔 수 없음const a=5;const b=2;console.log(a + b);console.log(a \* b);console.log(a / b);let 사용

true: 켜져있음false: 꺼져있음 null: 아무것도 없음 (비어있어요를 의도적으로 표현)undefiend : 변수는 존재하나, 어떠한 값으로도 할당되지 않아 자료형이 정해지지(undefined) 않은 상태null : 변수는 존재하나, null 로 (값이) 할당