Solución:
El momento tiene un daysInMonth
función:
Días del mes 1.5.0+
moment().daysInMonth();
Obtenga el número de días del mes actual.
moment("2012-02", "YYYY-MM").daysInMonth() // 29 moment("2012-01", "YYYY-MM").daysInMonth() // 31
Puedes obtener los días en una matriz.
Array.from(Array(moment('2020-02').daysInMonth()).keys())
//=> [0, 1, 2, 3, 4, 5...27, 28]
Array.from(Array(moment('2020-02').daysInMonth()), (_, i) => i + 1)
//=> [1, 2, 3, 4, 5...28, 29]
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)