Nodejs Timestamp Calculate getDateTimeStamp()

Here you can find the source of getDateTimeStamp()

Method Source Code

Date.prototype.getDateTimeStamp = function() {
  let hours = this.getHours();/* w  w w .  jav  a2s  . c  o  m*/
  let minutes = this.getMinutes();
  let seconds = this.getSeconds();
  return this.getDateStamp() + '-' + [
    (hours > 9 ? '' : '0') + hours,
    (minutes > 9 ? '' : '0') + minutes,
    (seconds > 9 ? '' : '0') + seconds
  ].join('');
};

Related

  1. getTimestamp()
    function fixNumber(number, scale) {
      if (typeof(scale) === 'undefined') {
        scale = 2;
      var n = number;
      var str = '';
      for (var i=scale; i>=1; i--) {
        var p = Math.pow(10, i-1);
        if (n >= p) {
    ...
    
  2. toH2Timestamp()
    Date.prototype.toH2Timestamp = function(){
      return [this.getFullYear(), '-',
          this.pad(this.getMonth()+1), '-',
          this.pad(this.getDate()), ' ',
          this.pad(this.getHours()), ':',
          this.pad(this.getMinutes()), ':',
          this.pad(this.getSeconds()) ].join('');
    
  3. toUnixTimestamp()
    Date.prototype.toUnixTimestamp = function() { 
      return this.getTime()/1000 
    };