Hey how can you find the number of days difference in javascript between two dates with a "yyyymmdd" format?
For instance 20210206 - 20210825 will return 619, however these dates are actually only 200 days apart.
Also, I have to do with the dates as just integers. I don't have access to any special date functions.
Is there a math genius out there who knows what to do?