프로그래밍 언어/HTML,CSS,JS

JS 날짜 개체에서 YYYYMMDD 형식의 문자열을 가져오는 방법

Rateye 2021. 11. 1. 10:29
728x90
반응형
질문 : JS 날짜 개체에서 YYYYMMDD 형식의 문자열을 가져 오나요?

JS를 사용하여 date object YYYYMMDD 형식의 문자열로 바꾸려고합니다. Date.getYear() , Date.getMonth()Date.getDay() 연결하는 것보다 쉬운 방법이 있습니까?

답변

내가 자주 사용하는 변경된 코드 :

Date.prototype.yyyymmdd = function() {
  var mm = this.getMonth() + 1; // getMonth() is zero-based
  var dd = this.getDate();

  return [this.getFullYear(),
          (mm>9 ? '' : '0') + mm,
          (dd>9 ? '' : '0') + dd
         ].join('');
};

var date = new Date();
date.yyyymmdd();
출처 : https://stackoverflow.com/questions/3066586/get-string-in-yyyymmdd-format-from-js-date-object
728x90
반응형