I have the following date format = 16 September 2016
This example isnt a good one because the month happens to be the same in English. But some other months are in the german language. How can i convert this to a date?
I have an idea of creating a static object with months and their corresponding values and it would work like that. Is this the only way or is there a better one.
My idea: dateObj = {januar : 01 , februar : 02 , ... } etc
Then i could do a lookup and find the value i need.