moment weekday name code example
Example 1: format a date moment
moment(testDate).format('MM/DD/YYYY');
Example 2: moment get weekday name
var m = moment().day(); // gives 4 for thursday, then you can do a switch
moment(testDate).format('MM/DD/YYYY');
var m = moment().day(); // gives 4 for thursday, then you can do a switch