Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

check if a date is valid with the format yyyy/mm/dd

Good day , I would just like to ask How do we check if a date is valid in javascript the format of the dates are always like the example below. Thanks.

startDate: "2022-1-28"

>Solution :

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

You can simply use moment.js to check if your date is valid with the given format.

const date = moment('2022-1-28', 'YYYY-MM-DD');
date.isValid(); // false

source

Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading