Skip to content

Instantly share code, notes, and snippets.

View rlog's full-sized avatar
🍹
Want to take a vacation

Robin Deng rlog

🍹
Want to take a vacation
View GitHub Profile
@rlog
rlog / gist:5538621
Created May 8, 2013 06:26
format-date
Date.prototype.format = function(format) {
var o = {
"M+" : this.getMonth()+1, //month
"d+" : this.getDate(), //day
"h+" : this.getHours(), //hour
"m+" : this.getMinutes(), //minute
"s+" : this.getSeconds(), //second
"q+" : Math.floor((this.getMonth()+3)/3), //quarter
"S" : this.getMilliseconds() //millisecond
}