moment short weekday code example
Example 1: moment subtract days
var startdate = moment();
startdate = startdate.subtract(1, "days");
startdate = startdate.format("DD-MM-YYYY");
Example 2: moment get weekday name
var m = moment().day(); // gives 4 for thursday, then you can do a switch