I\'m trying to test to make sure a date is valid in the sense that if someone enters 2/30/2011 then it should be wrong.
2/30/2011
How can I do this with any date?
I recommend to use moment.js. Only providing date to moment will validate it, no need to pass the dateFormat.
var date = moment("2016-10-19");
And then date.isValid() gives desired result.
date.isValid()
Se post HERE