I have this code using javascript :
var event = new Date('August 19, 1975 23:15:30');
var event1 = new Date('March 25, 1956 15:50:14');
And I would like to know how can I check if the value of event1 is equal to event?
Is there a way I can do this?
Thank you!