[Javascript] Date 현재 날짜 출력 (yyyy-mm-dd)
- 📕 Programing/Javascript
- 2023. 3. 12. 21:02
Date 함수 활용
let now = new Date();
let year = now.getFullYear();
let month = now.getMonth() + 1;
let day = now.getDate();
console.log('now =', now); // Date Sun Mar 12 2023 20:59:40 GMT+0900 (대한민국 표준시)
console.log(year); // 2023
console.log(month); // 3
console.log(day); // 12
예제) 'yyyy-mm-dd' 형태로 출력
let nowDate = year + '-' + month.toString().padStart(2,0) + '-' + day.toString().padStart(2,0);
//2023-03-12
- "2023-03-12"이 출력된다.
'📕 Programing > Javascript' 카테고리의 다른 글
[Javascript] 스타일 변경 (0) | 2023.04.08 |
---|---|
[Javascript - 이론] 프로미스 / 프로미스 체이닝 (0) | 2023.04.08 |
[오류] ajax Access-Control-Allow-Origin 문제 (0) | 2023.01.04 |
[Javascript] 객체의 Key, Value 조회하는 방법 (0) | 2022.11.11 |
[Javascript- 이론] async , defer (0) | 2022.03.08 |