I have a requirement for converting date dates to moment.js. But this gives me a great result in Chrome and Firefox.
In Google Chrome, it gives the correct result, but in Mozilla firefox gives an "Invalid date".
Google chrome
moment('2016-Jan-02 02:00 AM').format()
Output: "2016-01-02T02:00:00+05:30"
Mozilla firefox
moment('2016-Jan-02 02:00 AM').format()
"Invalid date"
Your help is greatly appreciated.
source
share