Skip to content

Instantly share code, notes, and snippets.

@bkudria
Created March 5, 2020 01:13
Show Gist options
  • Save bkudria/f858171ec2eab75c87fc0b30ac0920a1 to your computer and use it in GitHub Desktop.
Save bkudria/f858171ec2eab75c87fc0b30ac0920a1 to your computer and use it in GitHub Desktop.
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