Nodejs Date Convert toDateInputValue(()

Here you can find the source of toDateInputValue(()

Method Source Code

// Timezone support
Date.prototype.toDateInputValue = (function() {
    var local = new Date(this);
    local.setMinutes(this.getMinutes() - this.getTimezoneOffset());
    return local.toJSON().slice(0, 10);
});//from w  ww .j  a va 2  s  . c o  m

Related

  1. toDateInputValue(()
    Date.prototype.toDateInputValue = (function() {
      var local = new Date(this);
      local.setMinutes(this.getMinutes() - this.getTimezoneOffset());
      return local.toISOString().substr(0,10);
    });
    
  2. toDateInputValue(()
    Date.prototype.toDateInputValue = (function() {
        var local = new Date(this);
        local.setMinutes(this.getMinutes() - this.getTimezoneOffset());
        return local.toJSON().slice(0,10);
    });
    
  3. toDateInputValue(()
    Date.prototype.toDateInputValue = (function() {
      var local = new Date(this);
      local.setMinutes(this.getMinutes() - this.getTimezoneOffset());
      return local.toISOString().substr(0,10);
    });
    
  4. toDateInputValue(()
    Date.prototype.toDateInputValue = (function() {
        var local = new Date(this);
        local.setMinutes(this.getMinutes() - this.getTimezoneOffset());
        return local.toJSON().slice(0,10);
    });
    
  5. toDateInputValue(()
    Date.prototype.toDateInputValue = (function() {
      var local = new Date(this);
      local.setMinutes(this.getMinutes() - this.getTimezoneOffset());
      return local.toJSON().slice(0,10);
    });
    
  6. toDateInputValue(()
    Date.prototype.toDateInputValue = (function() {
      var local = new Date();
      return local.toJSON().slice(0,10);
    });
    
  7. toDateInputValue()
    'use strict';
    Date.prototype.toDateInputValue = function() {
        var local = new Date(this);
        local.setMinutes(this.getMinutes() - this.getTimezoneOffset());
        return local.toJSON().slice(0,10);
    };
    
  8. toDateOrDefault(input, defaultDate)
    Date.toDateOrDefault = function(input, defaultDate){
      return (typeof input == "string") ? Date.fromJSON(input) : input || defaultDate || new Date(); 
    };
    
  9. toDateOrTimeStr()
    Date.prototype.toDateOrTimeStr = function() {
      if (this.isToday()){
        var dt = this.toLocaleTimeString();
        return dt.slice(0, -6) + dt.slice(-3); 
      } else
        return this.toLocaleDateString();