Nodejs Date Format format()

Here you can find the source of format()

Method Source Code

function ISODateString(aDate) {
  function pad(aNumber) {
    return aNumber < 10 ? '0' + aNumber : aNumber;
  }// w w w.j  a  v a  2s  .  com

  return aDate.getUTCFullYear() + '-' +
         pad(aDate.getUTCMonth() + 1) + '-' +
         pad(aDate.getUTCDate());
}

// For convenience...
Date.prototype.format = function () {
  return ISODateString(this);
};

Related

  1. format
    ===
    
  2. format( format )
    Date.prototype.format = function( format ){
        if( typeof format !== "string" ) return this.toLocaleString();
        var match = {
            "y": this.getFullYear(),
            "M": this.getMonth() + 1,
            "d": this.getDate(),
            "h": this.getHours(),
            "m": this.getMinutes(),
            "s": this.getSeconds(),
    ...
    
  3. format( format )
    define(function(require, exports, module) {
    Date.prototype.format = function( format ){
        if( typeof format !== "string" ) return this.toLocaleString();
        var match = {
            "y": this.getFullYear(),
            "M": this.getMonth() + 1,
            "d": this.getDate(),
            "h": this.getHours(),
            "m": this.getMinutes(),
    ...
    
  4. format(()
    Date.prototype.format = (function() {
      var
        that, txts,
        roman = ['I', 'II', 'III', 'IV', 'V', 'VI', 'VII', 'VIII', 'IX', 'X', 'XI', 'XII'],
        addZero = function(num) {
          return num < 10 ? '0' + num : num;
        },
        na = function(n, z) {
          return n % z;
    ...
    
  5. format()
    Date.prototype.format = function () {
      'use strict';
      var
          d = this.getDate()
        , m = this.getMonth() + 1
        , y = this.getFullYear();
        return '' + y + '-' + (m<=9 ? '0' + m : m) + '-' + (d <= 9 ? '0' + d : d);
    };
    
  6. format()
    function ISODateString(aDate) {
      function pad(aNumber) {
        return aNumber < 10 ? '0' + aNumber : aNumber;
      return aDate.getUTCFullYear() + '-' +
             pad(aDate.getUTCMonth() + 1) + '-' +
             pad(aDate.getUTCDate());
    Date.prototype.format = function () {
    ...
    
  7. format()
    Date.prototype.format = function() {
      var d = new Date();
      var curr_date = d.getDate();
      var curr_month = d.getMonth();
      var curr_year = d.getFullYear();
      return (curr_date + "/" + curr_month + "/" + curr_year);
    
  8. format()
    Date.prototype.format = function(){
      var formatMonth = function(month, numberOfDigits){
        month += 1;
        month = insertZerosLeft(month, numberOfDigits);
        return month;
      };
      var insertZerosLeft = function(data, numberOfDigits){
        data = data.toString();
        var zeros = '';
    ...
    
  9. format()
    Date.prototype.format = function () {
        var month = this.getMonth() + 1;
        var date = this.getDate();
        month < 10 && (month = "0" + month);
        date < 10 && (date = "0" + date);
        return [this.getFullYear(), month, date].join("-");
    };