Nodejs String to Date Convert getDateString()

Here you can find the source of getDateString()

Method Source Code

Date.prototype.getDateString = function(){
  var S = this.getSeconds(),
      M = this.getMinutes(), H = this.getHours(),
      dd = this.getDate(), mm = this.getMonth()+1, 
      yyyy = this.getFullYear();/*from   w w  w.  j a va 2 s.c om*/
  if(dd<10){
    dd ='0'+dd
  }
  if(mm<10) {
    mm ='0'+mm
  }
  date = dd+'/'+mm+'/'+yyyy+'|'+H+'|'+M+'|'+S;
  return date;
}

Related

  1. toDate(str)
    String.prototype.toDate = function(str) {
        var m = this.match(/(\d+)-(\d+)-(\d+)\s+(\d+):(\d+):(\d+)/);
        return new Date(+m[1], +m[2] - 1, +m[3], +m[4], +m[5], +m[6]);
    
  2. toDateFormat(format)
    String.prototype.toDateFormat = function (format) {
        return this.parseToDate().toDateFormat(format);
    };
    
  3. toDateFromAspNet()
    if (!window.console) {
        console = {
            log: function (msg) {
        };
    };
    String.prototype.toDateFromAspNet = function () {
        var dte = eval("new " + this.replace(/\
        dte.setMinutes(dte.getMinutes() - dte.getTimezoneOffset());
    ...
    
  4. toDateFromAspNet()
    String.prototype.toDateFromAspNet = function () {
        var dte = eval("new " + this.replace(/\
        dte.setMinutes(dte.getMinutes() - dte.getTimezoneOffset());
        return dte;
    };
    
  5. getDate()
    String.prototype.getDate = function() {
        return this.toDate().getDate();
    
  6. getDateString()
    Date.prototype.getDateString = function () {
       return this.getFullYear() + '/' + this.getMonth2() + '/' + this.getDate2();
    };
    Date.prototype.addDays = function (days) {
        this.setDate(this.getDate() + days);
        return this;
    };
    Date.prototype.getDate2 = function () {
       var date = this.getDate();
    ...
    
  7. getDateString()
    Date.prototype.getDateString = function () {
       return this.getFullYear() + '/' + this.getMonth2() + '/' + this.getDate2();
    };
    
  8. getDateString(str)
    Date.prototype.getDateString = function(str)
      var dnames = ['Sunday', 'Monday', 'Tuesday', 'Wednesday',
          'Thursday', 'Friday', 'Saturday', 'Sunday'];
      var mnames = ['January', 'February', 'March', 'April',
          'May', 'June', 'July', 'August', 'September',
          'October', 'Novemeber', 'December'];
      str = str.replace('%day', dnames[this.getDay()]);
      str = str.replace('%date', this.getDate());
    ...