Question
Convert a German Date to a date taht can be parsed in JS
In our German forms dates are always written "dd.mm.yyyy" e.g. today = 04.01.2023
If I want to use the parse() function to compare dates I have to convert them to the general format yyyy-mm-dd
Of course you could dissect the Date-String and put it together again - but is there really no easy way?
