Nodejs Date Format Format(fmt)

Here you can find the source of Format(fmt)

Method Source Code

//timestamp Date Format
Date.prototype.Format = function(fmt) {
   var o = {/*www  . j a  v a2s.  c o  m*/
      "M+" : this.getMonth() + 1,
      "d+" : this.getDate(),
      "h+" : this.getHours(),
      "m+" : this.getMinutes(),
      "s+" : this.getSeconds(),
      "q+" : Math.floor((this.getMonth() + 3) / 3),
      "S" : this.getMilliseconds()
   };
   if (/(y+)/.test(fmt))
      fmt = fmt.replace(RegExp.$1, (this.getFullYear() + "").substr(4 - RegExp.$1.length));
   for ( var k in o)
      if (new RegExp("(" + k + ")").test(fmt))
         fmt = fmt.replace(RegExp.$1,(RegExp.$1.length == 1) ? (o[k]): (("00" + o[k]).substr(("" + o[k]).length)));
   return fmt;
};

Related

  1. splitYmd()
    Number.prototype.splitYmd=function(){
        var time=(this+"");
        var dates=[];
        dates.push(time.slice(0,4));
        dates.push(time.slice(4,6));
        dates.push(time.slice(6,8));
        return dates;
    
  2. Format(fmt)
    Date.prototype.Format = function (fmt) {
        var o = {
            "m+": this.getMonth() + 1,
            "d+": this.getDate(),
            "h+": this.getHours(),
            "i+": this.getMinutes(),
            "s+": this.getSeconds(),
            "q+": Math.floor((this.getMonth() + 3) / 3),
            "S": this.getMilliseconds()
    ...
    
  3. Format(fmt)
    Date.prototype.Format = function (fmt) {
      var o = {
        "M+": this.getMonth() + 1, 
        "d+": this.getDate(), 
        "h+": this.getHours(), 
        "m+": this.getMinutes(), 
        "s+": this.getSeconds(), 
        "q+": Math.floor((this.getMonth() + 3) / 3), 
        "S": this.getMilliseconds() 
    ...
    
  4. Format(fmt)
    Date.prototype.Format = function (fmt) { 
      var o = {
        'M+': this.getMonth() + 1,
        'd+': this.getDate(), 
        'h+': this.getHours(),
        'm+': this.getMinutes(),
        's+': this.getSeconds(),
        'q+': Math.floor((this.getMonth() + 3) / 3),
        'S': this.getMilliseconds()
    ...
    
  5. Format(fmt)
    Date.prototype.Format = function (fmt) {
      let values = {
        'M+': this.getMonth() + 1,
        'd+': this.getDate(),
        'h+': this.getHours(),
        'm+': this.getMinutes(),
        's+': this.getSeconds(),
        'q+': Math.floor((this.getMonth() + 3) / 3),
        'S': this.getMilliseconds()
    ...