Notice
Recent Posts
Recent Comments
목록yyyymmddhhmm (1)
준호씨의 블로그
javascript - date yyyymmdd, hhmmss, yyyymmddhhmmss, yyyymmddhhmm
yyyymmdd Date.prototype.yyyymmdd = function() { var mm = this.getMonth() + 1; var dd = this.getDate(); return [this.getFullYear(), (mm>9 ? '' : '0') + mm, (dd>9 ? '' : '0') + dd ].join(''); }; var date = new Date(); date.yyyymmdd(); output "20180703" hhmmss Date.prototype.hhmmss = function() { var hh = this.getHours(); var mm = this.getMinutes(); var ss = this.getSeconds(); return [(hh>9 ? '' : ..
개발이야기
2018. 7. 11. 22:00