Want to transform the date time format using momentjs
2017-02-01T00:00:00.000Z
into
02-2017 ( month-year )
Looking for a way to change the date format to display only month-year using momentjs?
I attempted it like this:
var MnthYr = moment(2017-02-01T00:00:00.000Z).format("MM-YYYY");
Unfortunately, the result was not as expected.