Nodejs Utililty Methods Day Add

List of utility methods to do Day Add

Description

The list of methods to do Day Add are organized into topic(s).

Method

addDays(days)
Date.prototype.addDays = function(days) {
    var result = new Date(this);
    result.setDate(result.getDate() + days);
    return result; 
};
addDays(days)
Date.prototype.addDays = function (days) {
    var dat = new Date(this.valueOf());
    dat.setDate(dat.getDate() + days);
    return dat;
};
addDays(days)
Date.prototype.addDays = function(days)
    this.addMilliseconds(days * 24 * 3600 * 1000);
    return this;
};
addDays(days)
Date.prototype.addDays = function(days) {
    this.setDate(this.getDate() + parseInt(days));
    return this;
addDays(days)
Date.prototype.addDays = function(days){
  this.setTime(this.getTime() + days * 1000 * 60 * 60 * 24);
  return this;
};
addDays(dias)
Date.prototype.addDays = function (dias){
      var fecha1 = new Date(2011, 1,20);
      var fecha2 = new Date(2011, 1,21);
      var diferencia = fecha2.getTime() - fecha1.getTime();
      var luego = new Date();
      luego.setTime( this.getTime() + (dias * diferencia )  );
      return luego;
addDays(number)
Date.prototype.addDays = function (number) {
    var date = new Date(this);
    date.setDate(date.getDate() + number);
    return date;
};
addDays(value)
Date.prototype.addDays = function(value) {
  this.setDate(this.getDate() + value);
  return this;
};
nextDay()
'use strict';
Date.prototype.nextDay = function() {
  var currentDate = this.getDate();
  console.log('currentDate', currentDate);
  return new Date(this.setDate(currentDate + 1));
var d = new Date();
console.log('Next day', d.nextDay());
nextDay()
Date.prototype.nextDay = function(){
  let currentDate = this.getDate();
  return new Date(this.setDate(currentDate + 1));
let date = new Date();
console.log(date);
console.log(date.nextDay());