Skip to content

Instantly share code, notes, and snippets.

@NightOwlPrgmr
Last active September 15, 2015 10:45
Show Gist options
  • Save NightOwlPrgmr/f717857e077713b1122a to your computer and use it in GitHub Desktop.
Save NightOwlPrgmr/f717857e077713b1122a to your computer and use it in GitHub Desktop.
Reusable JS Date Prototype
Date.prototype.extractTime = function() {
var h = this.getHours(),
m = this.getMinutes(),
s = this.getSeconds();
return h + ":" + m + ":" + s;
}
var d = new Date();
console.log(d.extractTime());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment