I want to compare two strings of date. The format is: day month year. (example: 5 april 2017) I want to see if it's superior or not to the current date. (6 december 2017) Is it possible without being too difficult?
d1 = "5 april 2017"
d2 = "5 december 2017"
if (d1<d2){
//do this
}