How to get name of the day from date with momentjs
From the Format section of their documentation:
Day of Week
dddd
Sunday Monday ... Friday Saturday
moment().format('dddd');
In case, if you want to get a name out of an index day
const day = 1; //second index after 0
moment().day(day).format("dddd") //Monday