moment get day 05 code example
Example 1: moment get weekday name
var m = moment().day(); // gives 4 for thursday, then you can do a switch
Example 2: moment get day
var check = moment(n.entry.date_entered, 'YYYY/MM/DD');
var month = check.format('M');
var day = check.format('D');
var year = check.format('YYYY');