Nodejs String to Date Convert getDateString()

Here you can find the source of getDateString()

Method Source Code

Date.prototype.getDateString = function () {
   return this.getFullYear() + '/' + this.getMonth2() + '/' + this.getDate2();
};

Related

  1. toDateFromAspNet()
    if (!window.console) {
        console = {
            log: function (msg) {
        };
    };
    String.prototype.toDateFromAspNet = function () {
        var dte = eval("new " + this.replace(/\
        dte.setMinutes(dte.getMinutes() - dte.getTimezoneOffset());
    ...
    
  2. toDateFromAspNet()
    String.prototype.toDateFromAspNet = function () {
        var dte = eval("new " + this.replace(/\
        dte.setMinutes(dte.getMinutes() - dte.getTimezoneOffset());
        return dte;
    };
    
  3. getDate()
    String.prototype.getDate = function() {
        return this.toDate().getDate();
    
  4. getDateString()
    Date.prototype.getDateString = function(){
      var S = this.getSeconds(),
          M = this.getMinutes(), H = this.getHours(),
          dd = this.getDate(), mm = this.getMonth()+1, 
          yyyy = this.getFullYear();
      if(dd<10){
        dd ='0'+dd
      if(mm<10) {
    ...
    
  5. 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();
    ...
    
  6. 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());
    ...