Skip to content

Instantly share code, notes, and snippets.

@yansusanto
Last active July 22, 2020 13:34
Show Gist options
  • Save yansusanto/bf39d5693cfb2332674a6f264ff7b61a to your computer and use it in GitHub Desktop.
Save yansusanto/bf39d5693cfb2332674a6f264ff7b61a to your computer and use it in GitHub Desktop.
Set a date 12 months in the future
const oneYearLater = new Date(
new Date().getFullYear(),
new Date().getMonth() + 12,
new Date().getDate()
);
let launchDate = oneYearLater;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment