Nodejs Minute Calculate timeMinute()

Here you can find the source of timeMinute()

Method Source Code

Date.prototype.timeMinute = function () {
     return ((this.getMinutes() < 10)?"0":"") + this.getMinutes();
}

Related

  1. getSimpleMinutesgetSimpleMinutes()
    Date.prototype.getSimpleMinutes = function getSimpleMinutes() {
      var ss_ofs = this.getDaySimpleSeconds();
      var sm_ofs = Math.floor(ss_ofs/100);
      var sh_ofs = Math.floor(sm_ofs/100);
      return sm_ofs-sh_ofs*100;
    
  2. isXMinutesBeforeNow(minutes)
    Date.prototype.isXMinutesBeforeNow = function(minutes)
      minutes = parseInt(minutes);
      if (minutes !== minutes){
        console.warn('Date.isXMinutesBeforeNow: @param: minutes is NaN');
        return true;
      var d = Date.now();
      return (d - this) > (parseInt(minutes) * 60 *1000);
    ...
    
  3. olderThan(minutes)
    Date.prototype.olderThan = function(minutes) {
      var now = new Date();
      return now.getTime() - this.getTime() > minutes*60*1000
    };
    
  4. removeMinutes(m)
    Date.prototype.removeMinutes = function (m) {
      this.setMinutes(this.getMinutes()-m);
      return this;
    };
    
  5. timeHourMinute()
    Date.prototype.timeHourMinute = function () {
        return ((this.getHours() < 10)?"0":"") + this.getHours() +":"+ ((this.getMinutes() < 10)?"0":"") + this.getMinutes();
    
  6. totalMinutes()
    Date.prototype.totalMinutes = function(){
      return this.getHours()*60+this.getMinutes()