javascript:date_object_to_yyyymmdd
This is an old revision of the document!
JavaScript - Date object to YYYYMMDD
An easy way to turn a date object into a string in YYYYMMDD format, which is easier than concatenating Date.getYear(), Date.getMonth(), and Date.getDay().
Date.prototype.yyyymmdd = function() { var mm = this.getMonth() + 1; // getMonth() is zero-based var dd = this.getDate(); return [this.getFullYear(), !mm[1] && '0', mm, !dd[1] && '0', dd].join(''); // padding }; var date = new Date(); date.yyyymmdd();
javascript/date_object_to_yyyymmdd.1467918837.txt.gz · Last modified: 2020/07/15 09:30 (external edit)