i have date
string
which looks like this 2017-11-09T05:36:00.834Z
I want this date string to be in readable format like this DD/MM/YYYY
I tried something like this but giving error
.
var formattedDate = new Date('2017-11-09T05:36:00.834Z').format('DD/MM/YYYY');
please help me to get the formated
date
thanks in advance!!!!!