I have 2 dates stored like this:
"04.12.2019, 09:35" // Today
"05.12.2019, 12:50" // Some different date
And i want to compare them (wether the date has already passed or still will come).
My thought about this was converting them to a Date and then comparing the dates but the online solutions to converting these strings into a date all use moment.js
Is there a way to convert these strings to a date without using moment.js or comparing them without even converting them to a date at all?