If you only want to compare Date and not Date-Time then add this line
var today = new Date();
today.setHours(0,0,0,0);
before comparison.
If you only want to compare Date and not Date-Time then add this line
var today = new Date();
today.setHours(0,0,0,0);
before comparison.