I have an array with some dates in "dd/mm/yyyy" formatted as string.
var myDates = [ "01/04/2017", "11/12/2017", "12/09/2017", "02/03/2017" ];
1) How can I retrieve the dates between "01/02/2017" and "01/12/2017" only?
2) How can I convert a "dd/mm/yyyy" string to a date in the same format?
Regards, Elio Fernandes