D
D
DrunkMaster2018-03-09 18:27:50
JavaScript
DrunkMaster, 2018-03-09 18:27:50

Date validation in JS?

Is there an analogue of the checkdate function php.net/manual/ru/function.checkdate.php in JS for checking the correctness of the date?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
E
Ernest Faizullin, 2018-03-09
@erniesto77

momentjs.com

npm install moment;

let date = somethingString;

let parsedDate = moment(date);

if (!parsedDate) {
    return;
}

// continue your magic

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question