윤인성 님의 혼공 자바스크립트 강의를 듣고 내용을 정리합니다.
JS는 대부분 상수로 선언해주고, 값이 변할 때만 변수로 사용해준다.
→ 헐.. 이게 맞나?
let a = 10;
a : lvalue
, left value → 넣는 놈
b : rvalue
, right value → 꺼내는 놈, 값
ex)
let a = 10; // a는 넣는 놈, 10은 값
let b = a; // b는 넣는 놈, a는 꺼내는 놈
typeof(a); //undefined
let b;
typeof(b); //undefined
const date = new Date();
date.getFullYear(); // 올해 연도 출력
date.getMonth(); // 현재 달 출력. 0~11로 출력. 즉 11월이 10월로 출력됨
date.getDate(); // 현재 월 출력. 1~31로 출력. 21일이 21일이다.
date.getHours(); // 현재 시간 출력. 0~23으로 출력