MomentJS - Fecha del mes

Este método obtendrá / establecerá el día del mes. Toma datos del 1 al 31, si es mayor que el rango proporcionado, se agregará al mes siguiente.

Sintaxis

moment().date(Number);
moment().date();
moment().dates(Number);
moment().dates();

Ejemplo

var m = moment().date(); // gets the current day of the month
var d = moment().date(2); // sets the day of month as shown below
var k = moment().date(40); //sets the day of month which is greater than the
range so the output shows the next month as shown in the output

Salida