how check if a form date is before today javascript

Solutions on MaxInterview for how check if a form date is before today javascript by the best coders in the world

showing results for - "how check if a form date is before today javascript"
Isabell
01 Jan 2021
1var Startdate = new Date(document.getElementById("Insert ID here").value)
2var now = new Date();
3if (before < now) {
4  // selected date is in the past
5}