Answers for "date of birth validation in yup"

0

date of birth validation in yup

Yup.string()
      .required("DOB is Required")
      .test("DOB", "Please choose a valid date of birth", (value) => {
        return moment().diff(moment(value), "years") >= 10;
      }),
Posted by: Guest on October-03-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language