javascript - Date Formatting is not working in momentjs? -
following date formatting not working in momentjs
var date ="01-12-2015";//dd-mm-yyy console.info(moment(date).format('yyyy-mm-dd'));
how can solve this?
you need tell momentjs how parse string giving:
var date ="01-12-2015";//dd-mm-yyyy console.info(moment(date, 'dd-mm-yyyy').format('yyyy-mm-dd'));
deprecation warning: moment construction falls js date. discouraged , removed in upcoming major release. please refer https://github.com/moment/moment/issues/1407 more info.
Comments
Post a Comment