15. 날짜
날짜
✔️ 자바스크립트의 날짜와 시간은 내장된 Date 객체에서 담당.
Date 객체는 원래 자바에서 가져온 것.
('자바'스크립트가 자바와 연관된 몇 안 되는 부분 중 하나)
현재 날짜와 시간을 나타내는 객체를 만들 때는 new Date()를 사용.
const now = new Date();
now; // Fri Dec 16 2020 09:20:16 GMT +0900 (KST)
특정 날짜에 해당하는 객체를 만들 때 :
const halloween = new Date(2020, 9, 31); // 월은 0에서 시작. 9 ➜ 10.
특정 날짜와 시간에 해당하는 객체를 만들 때 :
const halloweenParty = new Date(2020, 9, 31, 19, 0); // 19:00 = 7:00 pm
날짜 객체를 만들면 아래와 같이 각 부분을 가져올 수 있습니다.
halloweenParty.getFullYear(); // 2021
halloweenParty.getMonth(); // 5
halloweenParty.getDate(); // 8
halloweenParty.getDay(); // 2 (1: 월요일, 0: 일요일)
halloweenParty.getHours(); // 12
halloweenParty.getMinutes(); // 0
halloweenParty.getSeconds(); // 0
halloweenParty.getMillisecounds(); // 0
Author And Source
이 문제에 관하여(15. 날짜), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@yoojiwon/15.-날짜저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)