Skip to content

Instantly share code, notes, and snippets.

@thomasJang
Created September 24, 2015 08:58
Show Gist options
  • Save thomasJang/758bf6eb5b09d9babb88 to your computer and use it in GitHub Desktop.
Save thomasJang/758bf6eb5b09d9babb88 to your computer and use it in GitHub Desktop.
var stDtTime = ax5.util.date(data.rsvtStDt).getTime();
var endDtTime = ax5.util.date(data.rsvtEndDt).getTime();
for(var _d = stDtTime; _d <= endDtTime; _d = _d + (1000*60*60*24)){
console.log( _d, new Date(_d));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment