Nodejs Day Calculate getStartOfDay()

Here you can find the source of getStartOfDay()

Method Source Code

Date.prototype.getStartOfDay = function()
{
    var date = new Date(this);
    date.setHours(0);//from  w  w w  . ja  v  a 2s .  co  m
    date.setMinutes(0);
    date.setSeconds(0);
    return date;
}

Related

  1. getDaysUntil(futureDay)
    Date.prototype.getDaysUntil = function(futureDay) {
        var future = new Date(futureDay.getFullYear(), futureDay.getMonth(), futureDay.getDate());
        var today = new Date(this.getFullYear(), this.getMonth(), this.getDate());
        return (future - today) / (24 * 3600000);
    };
    
  2. getFistDay()
    Date.prototype.getFistDay = function () {
        var here = new Date(this.getFullYear(), this.getMonth(), 1);
        return here.getDay();
    };
    
  3. getLocalTotalPassedDays()
    Date.prototype.getLocalTotalPassedDays = function() {
      return Math.floor((+this - this.getTimezoneOffset() * 60 * 1000) / 864e5);
    };
    
  4. getNextDay()
    Date.prototype.getNextDay =function() {
       day = this.getDay()+1;  
      return (day);
    };
    var mydate = new Date('2016-01-09');
    document.write(mydate.toDateString()+"<br>");
    document.write(mydate.getNextDay());
    var d = new Date();
    document.write(d.getNextDay());
    ...
    
  5. getNumOfDays()
    Date.prototype.getNumOfDays = function()
        "use strict";
        var date = new Date(this.getFullYear(), this.getMonth() + 1, 0);
        return date.getDate();
    };
    
  6. getThisDay()
    'use strict';
    Date.prototype.getThisDay = function()
        var date = new Date();
        return [date.setHours(0,0,0,0), date.setHours(23,59,59,999)];
    
  7. getToday()
    Date.prototype.getToday = function () {
        return this.getFullYear()+'-'+this.getMonth()+'-'+this.getDate();
    
  8. getToday()
    Date.prototype.getToday = function () {
        return this.getFullYear()+'-'+this.getMonth()+'-'+this.getDate();
    
  9. isDST() //t is the date object to check, returns true if daylight saving time is in effect.
    Date.prototype.isDST = Date.prototype.isDST || function() { 
        var jan = new Date(this.getFullYear(),0,1);
        var jul = new Date(this.getFullYear(),6,1);
        return Math.min(jan.getTimezoneOffset(),jul.getTimezoneOffset()) == this.getTimezoneOffset();
    };
    exports.DataUtilities = {};