I am checking whether the date format is valid of not .why this format is valid ?
alert(moment('16-jun-199', 'DD-MMM-YYYY').isValid())
Why it is giving me true .It should be false .why ? here is my code
http://plnkr.co/edit/ZH2kjC9QWwbdLwmvH2Tp?p=preview where i am doing wrong .formate should be 'DD-MMM-YYYY'
You can try this
Note: additional true flag for
strict
parsing. which tells moment to not to use wildcards and use exact match.Source:https://momentjs.com/docs/