Nodejs Time Now Get timeNow()

Here you can find the source of timeNow()

Method Source Code

// For the time now
Date.prototype.timeNow = function () {
     return ((this.getHours() < 10)?"0":"") + this.getHours() +":"+ ((this.getMinutes() < 10)?"0":"") + this.getMinutes();
}

// Returns the current time in "HH:MM XM" format
function theTime() {
  var newDate = new Date();
  var hh_mm = newDate.timeNow();
  if (newDate.getHours() >= 12) {
    hh_mm += " PM";
    if (newDate.getHours() > 12) {
      hh_mm = hh_mm.slice(2, hh_mm.length);
      hh_mm = (newDate.getHours() - 12) + hh_mm;
    }/*w w  w .  j  a va2  s . c  o  m*/
  }
  else {
    hh_mm += " AM";
  }
  return hh_mm;
}

$('#time').text(theTime());

Related

  1. from_now()
    Number.prototype.from_now = function() {
      var d = new Date();
      return (d.getTime() + this); 
    };
    
  2. from_now()
    Number.prototype.from_now = function () {
      var i = this.valueOf();
      var t = new Date().getTime();
      return new Date(t + i);
    };
    
  3. timeNow()
    Date.prototype.timeNow = function(){
        return ((this.getHours() < 10)?"0":"") + this.getHours() +":"+ ((this.getMinutes() < 10)?"0":"") + this.getMinutes() +":"+ ((this.getSeconds() < 10)?"0":"") + this.getSeconds();
    };
    
  4. timeNow()
    Date.prototype.timeNow = function () {
      return ((this.getHours() < 10) ? "0" : "") + this.getHours() + ((this.getMinutes() < 10) ? "0" : "") + this.getMinutes() + ((this.getSeconds() < 10) ? "0" : "") + this.getSeconds();
    };
    
  5. timeNow()
    Date.prototype.timeNow = function () {
         return ((this.getHours() < 10)?"0":"") + this.getHours() +":"+ ((this.getMinutes() < 10)?"0":"") + this.getMinutes() +":"+ ((this.getSeconds() < 10)?"0":"") + this.getSeconds();
    
  6. timeNow()
    Date.prototype.timeNow = function () {
         return ((this.getHours() < 10)?"0":"") + this.getHours() +":"+ ((this.getMinutes() < 10)?"0":"") + this.getMinutes();
    
  7. timeNow()
    Date.prototype.timeNow = function(){     
      return ((this.getHours() < 10)?"0":"") + ((this.getHours()>12)?(this.getHours()-12):this.getHours()) +":"+ ((this.getMinutes() < 10)?"0":"") + this.getMinutes() +":"+ ((this.getSeconds() < 10)?"0":"") + this.getSeconds() + ' ' + ((this.getHours()>12)?('PM'):'AM'); 
    };
    
  8. timeNow()
    Date.prototype.timeNow = function(){
        return ((this.getHours() < 10)?"0":"") + ((this.getHours()>12)?(this.getHours()-12):this.getHours()) + ":" +
        ((this.getMinutes() < 10)?"0":"") + this.getMinutes() + ":" + ((this.getSeconds() < 10)?"0":"") +
        this.getSeconds() + ((this.getHours()>12)?(' PM'):' AM');
    };
    
  9. now()
    Date.now = function() { 
      return new Date().getTime();