Reputation: 161
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
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