const date1 = '25/02/1985';
const date2 = '26/02/1985';
// input 28/10/2018
// input DD/MM/YYYY
export const convertToDate = (dateSting) => {
const [day, month, year] = dateSting.split("/");
return new Date(parseInt(year), parseInt(month) - 1, parseInt(day));
}
console.log(convertToDate(date1) > convertToDate(date2))