Last active
July 22, 2020 13:34
-
-
Save yansusanto/bf39d5693cfb2332674a6f264ff7b61a to your computer and use it in GitHub Desktop.
Set a date 12 months in the future
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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