날짜, 시간 관련 객체
const date = new Date();
const date = new Date(Wed Mar 23 2022 09:00:00)
const date = new Date(2022, 2, 23, 9, 0, 0);
← 년, 월, 일, 시, 분, 초웹 브라우저의 주소창과 관련된 객체
새로고침
1) 현재 주소를 얻어와 새로고침
location.href = location.href
location = location
2) 현재 위치에 고정된 상태에서 새로고침
location.reload();
페이지 이동 - 뒤로가기 불가
location.replace('url');