February 19, 2024
Bowling for Soup's song "1985" is now farther in our past than any point of the year 1985 was in "1985"'s past.
let y1985 = new Date(1985, 0, 1);
let bfs1985 = new Date(2004, 6, 26);
let today = new Date(2024, 1, 18);
console.log(bfs1985.getTime() - y1985.getTime());
>> 617410800000
console.log(today.getTime() - bfs1985.getTime());
>> 617418000000
You're welcome.