Skip to content

Instantly share code, notes, and snippets.

@snaka
Created January 5, 2009 09:52
Show Gist options
  • Save snaka/43344 to your computer and use it in GitHub Desktop.
Save snaka/43344 to your computer and use it in GitHub Desktop.
function offsetDate(offset, base) {
if(!base) base = new Date();
var result = new Date;
result.setTime(base.getTime() + (1000 * 60 * 60 * 24 * offset));
return result;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment