Answers for "Is date greater than 18 years old javascript"

0

Is date greater than 18 years old javascript

function isDate18orMoreYearsOld(day, month, year) {
    return new Date(year+18, month-1, day) <= new Date();
}
Posted by: Guest on April-21-2021

Code answers related to "Is date greater than 18 years old javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language