[JavaScript] 날짜를 생성하는 New Date
Date 생성자는 시간의 특정 지점을 나타내는 Date 객체를 플랫폼에 종속되지 않는 형태로 생성한다.Date 객체는 1970년 1월 1일 UTC(국제표준시) 자정으로부터 지난 시간을 밀리초로 나타내는 UNIX 타임스탬프를 담는다.구문은 아래와 같이 기입하여 사용한다.new Date();new Date(value);new Date(dateString);new Date(year, monthIndex);new Date(year, monthIndex, day);new Date(year, monthIndex, day, hours);new Date(year, monthIndex, day, hours, minutes);new Date(year, monthIndex, day, hours, minutes, second..
2024. 6. 11.