Nodejs Month Calculate isBeforeMonth(d)

Here you can find the source of isBeforeMonth(d)

Method Source Code

Date.prototype.isBeforeMonth = function (d) {
    var tDate = new Date(this.getFullYear(), this.getMonth(), this.getDate());
    var pDate = new Date(d.getFullYear(), d.getMonth(), d.getDate());
    if(tDate.getFullYear() > pDate.getFullYear()) return false;
    if(tDate.getMonth() > pDate.getMonth()) return false;
    return true;/*  ww w.j av a  2  s  .  co  m*/
}

Related

  1. getMonthStart()
    Date.prototype.getMonthStart = function () {
      return new Date(this.getFullYear(), this.getMonth(), 1);
    };
    
  2. getShortMonth()
    Date.prototype.getShortMonth = function () {
       return ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"][this.getMonth()];
    };
    
  3. getShortMonthName()
    Date.prototype.getShortMonthName = function () {
      var monthNames = ["Jan", "Feb", "Mar", "Apr", "May", "Jun",
        "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"
      ];
      return monthNames[this.getMonth()];
    };
    
  4. incrementMonth( iIncrementValue )
    var aMonths = [ 'January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December' ]
    var aDays = [ 'Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday' ]
    Date.prototype.incrementMonth = function ( iIncrementValue )
      this.setMonth(
        this.getMonth() + iIncrementValue
      )
    Date.prototype.toDayString = function ()
    ...
    
  5. isAfterMonth(d)
    Date.prototype.isAfterMonth = function (d) {
        var tDate = new Date(this.getFullYear(), this.getMonth(), this.getDate());
        var pDate = new Date(d.getFullYear(), d.getMonth(), d.getDate());
        if(tDate.getFullYear() < pDate.getFullYear()) return false;
        if(tDate.getMonth() < pDate.getMonth()) return false;
        return true;
    
  6. isSameMonth(d)
    Date.prototype.isSameMonth = function (d) {
        var tDate = new Date(this.getFullYear(), this.getMonth(), this.getDate());
        var pDate = new Date(d.getFullYear(), d.getMonth(), d.getDate());
        return tDate.getMonth() == pDate.getMonth() 
    
  7. isSameMonth(d)
    Date.prototype.isSameMonth = function(d){
        var tDate = new Date(this.getFullYear(), this.getMonth(), this.getDate());
        var pDate = new Date(d.getFullYear(), d.getMonth(), d.getDate());
        if(tDate.getFullYear() != pDate.getFullYear()) return false;
        if(tDate.getMonth() != pDate.getMonth()) return false;
        return true;
    
  8. month()
    Date.prototype.month = function()
      var months = ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"];
      return months[this.getMonth()];
    
  9. monthAbbrev[ "Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec" ];
    Date.prototype.monthAbbrev = [ "Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec" ];
    Date.prototype.monthFull = [ "January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December" ];
    Date.prototype.weekAbbrev = [ "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"];
    Date.prototype.weekFull = [ "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"];
    Date.prototype.format = function(format)
      var output = format;
      output = output.replace("uHH",this.getUTCHours().toString().padLeft("0",2));
      output = output.replace("HH",this.getHours().toString().padLeft("0",2));
    ...