I’m working on a project where the JavaScript Date isn\'t big enough.
I want to place multiple events on the same time axis, some of them have month and day and some don
Create a class of your own that extends the Date class by adding a long integer field "year offset".
Update all the methods that you want to use to apply this year offset - you can leave almost everything as-is, since you're not touching the complexities of handling time and days; maybe it will even be enough for you to change the constructors and string formatting routines to include "your" year in them.