Skip to content

Instantly share code, notes, and snippets.

@dhigginbotham
Last active August 29, 2015 14:04
Show Gist options
  • Save dhigginbotham/b837ea8bcb748312bfde to your computer and use it in GitHub Desktop.
Save dhigginbotham/b837ea8bcb748312bfde to your computer and use it in GitHub Desktop.
function buildTimes() {
var times = [];
for (var i=-1;i<23;++i) {
var idx = (i+1);
var ampm = (idx>12 ? 'pm' : 'am');
var time = (idx>12 ? idx%12 : (idx>0 ? idx : 12));
if (idx==24) time = 12;
var t = time + ':00' + ampm;
times.push(t);
}
return times;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment