List of utility methods to do Timestamp Get
timestamp()Date.prototype.timestamp = function () { return this.date() + " " + this.time(); }; | |
timestamp()Date.prototype.timestamp = function(){ return Math.floor(this.getTime() / 1000); }; | |
timestamp()Date.prototype.timestamp = function(){ var h = this.getFullHours().toString(); var m = this.getFullMinutes().toString(); return h+':'+m+':00'; }; |