Created
March 5, 2020 01:13
-
-
Save bkudria/f858171ec2eab75c87fc0b30ac0920a1 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
let calculateNextYear = (some_date) => | |
new Date(some_date.getFullYear() + 1, | |
some_date.getMonth(), | |
some_date.getDate()); | |
let today = new Date(); | |
let next_year = calculateNextYear(today); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment