Anusha Krishnamurthy
Anusha Krishnamurthy

Reputation: 161

How to validate 2020-12-31T13:00:00.000Z using moment js?

I would like to validate this date 2020-12-31T13:00:00.000Z but I couldn't find a method in moment that does the job . Kindly help

Upvotes: 0

Views: 870

Answers (1)

kako-jun
kako-jun

Reputation: 183

Please use isValid().

    console.log(moment("2020-12-31T13:00:00.000Z").isValid());

true is returned.

    console.log(moment("2020-12-32T13:00:00.000Z").isValid());

false is returned.

Upvotes: 2

Related Questions