Skip to content

Instantly share code, notes, and snippets.

@bkudria
Created March 5, 2020 01:20
Show Gist options
  • Save bkudria/0a54203493a66d9e0406f6149a065079 to your computer and use it in GitHub Desktop.
Save bkudria/0a54203493a66d9e0406f6149a065079 to your computer and use it in GitHub Desktop.
let leap_day = new Date(2020, 1, 29);
let next_feb_eom = new Date(2021, 1, 28);
assert(
calculateNextYear(leap_day) === next_feb_eom
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment