I have a string '20-08-2018' (dd-mm-yyyy). How can I format it to (YYYY-MM-DD) moment format. WhenI'm trying to format, I got an "Invalid date"
moment(value).format('YYYY-MM-DD')
I have a string '20-08-2018' (dd-mm-yyyy). How can I format it to (YYYY-MM-DD) moment format. WhenI'm trying to format, I got an "Invalid date"
moment(value).format('YYYY-MM-DD')
Share
Improve this question
edited Aug 8, 2018 at 13:02
mtleppay
asked Aug 8, 2018 at 11:33
mtleppaymtleppay
2812 gold badges8 silver badges15 bronze badges
1
- Possible duplicate of Format datetime to YYYY-MM-DD HH:mm:ss in moment.js – Overflowrun Commented Aug 8, 2018 at 11:35
1 Answer
Reset to default 17Your input value is ambiguous. You should specify the input format:
moment('20-08-2018', 'DD-MM-YYYY').format('YYYY-MM-DD')