Get the date list based on start and end date using moment js.
For example, I have two dates, One is a start date and end date. My start date is 2019-04-02
and my end date is 2019-05-16
I need all the date in between these two dates.
My output will be ["2019-04-02", "2019-04-03", "2019-04-04", ..., "2019-05-16"]
is it possible in moment js ?