I am having the date format dd-MMM-yyyy
while getting data from server side.
I am doing some validation with it like
if (new Date("02-MAY-2018").toDateString() == new Date(this.dob).toDateString()) {
alert("No error");
}
else {
alert("error");
}
Here new Date("02-MAY-2018").toDateString()
this conversion is working on chrome, but not in IE