Also: January is not always the 1st month, sometimes it is the 0th.
1/1/2026 can be both Jan 1st, and Feb 1st.
For the downvoters, try it in your browser's terminal:
js
let test = new Date("1-1-2026");
console.log(`Year: ${test.getFullYear()}, Month: ${test.getMonth()}, Day: ${test.getDate()}`);
// Prints -> Year: 2026, Month: 0, Day: 1
// --- --- --- --- --- --- --- ---
// test.getFullYear() returns the year, but test.getYear() only returns the number of years since 1900
// test.getMonth() returns the month, but the first month is 0-indexed
// test.getDate() returns the day, 1-indexed, but test.getDay() returns the current day right now and not the day of the date object
WTF is with some of the tests using a 6144 x 2560 resolution?
What the hell kind of display are they using?
The only one I could find at that weird-ass resolution was a 52 inch?! dell monitor.
Is anyone seriously using a 52 inch display?
I think they should probably be using normal resolutions for all the tests so they don't end up benchmarking some weird corner case optimisation issue that no one is going to run into.