Nodejs Date Get getNumberDate()

Here you can find the source of getNumberDate()

Method Source Code

//to get number text value of date
Date.prototype.getNumberDate = function() {
   var month = this.getMonth() + 1;
   var day = this.getDate();
   var year = this.getFullYear();   
   return month +"/"+ day +"/"+ year;
}

Related

  1. getGMTOffset()
    Date.prototype.getGMTOffset = function () {
        return (this.getTimezoneOffset() > 0 ? "-" : "+")
            + String.leftPad(Math.floor(this.getTimezoneOffset() / 60), 2, "0")
            + String.leftPad(this.getTimezoneOffset() % 60, 2, "0");
    
  2. getLastDate()
    Date.prototype.getLastDate = function() {
        return new Date(this.getFullYear(), this.getMonth() + 1, 0).getDate();
    
  3. getLocalDateObject()
    Date.prototype.getLocalDateObject = function () {
        return new Date(this.toLocaleString())
    
  4. getMidnight()
    Date.getToday = function() {
       var now = new Date();
       return now.getMidnight();
    };
    Date.prototype.getMidnight = function() {
       return new Date( this.getFullYear(), this.getMonth(), this.getDate(), 0, 0, 0);
    };
    
  5. getNextDate(i)
    Date.prototype.getNextDate = function(i){
      return new Date(new Date().setDate(new Date().getDate()+i));
    };
    
  6. getPreviousDate(i)
    Date.prototype.getPreviousDate = function(i){
      return new Date(new Date().setDate(new Date().getDate()-i));
    };
    
  7. getSecondsFormatted(number)
    Date.prototype.getSecondsFormatted = function(number) {
        var second = this.getSeconds();
        return second < 10 ? '0' + second : second;
    };
    
  8. getSecondsTwoDigits()
    Date.prototype.getSecondsTwoDigits = function()
        var retval = this.getSeconds();
        if (retval < 10)
            return ("0" + retval.toString());
        else
            return retval.toString();
    };
    
  9. getSimpleMillisecondsgetSimpleMilliseconds()
    Date.prototype.getSimpleMilliseconds = function getSimpleMilliseconds() {
      return (this.getDaySeconds()/ (24*60*60) * (10*100*100)) - this.getDaySimpleSeconds();