Nodejs Date Before isBeforeDate(d)

Here you can find the source of isBeforeDate(d)

Method Source Code

Date.prototype.isBeforeDate = function (d) {
    var tDate = new Date(this.getFullYear(), this.getMonth(), this.getDate());
    var pDate = new Date(d.getFullYear(), d.getMonth(), d.getDate());
    return tDate < pDate
}

Related

  1. before(other)
    Date.prototype.before = function(other) {
        return this.compareTo(other) < 0;
    
  2. before(other)
    Date.prototype.before = function(other) {
        return this.compareTo(other) < 0;
    };
    Date.prototype.after = function(other) {
        return this.compareTo(other) > 0;
    };
    Date.prototype.withDate = function(date) {
        this.setFullYear(date.getFullYear());
        this.setMonth(date.getMonth());
    ...
    
  3. isBefore(date2)
    Date.prototype.isBefore = function(date2)
      return this < date2