Hemos investigado por diferentes espacios para así mostrarte la respuesta para tu duda, en caso de dudas deja tu duda y responderemos porque estamos para servirte.
Ejemplo: cómo obtener la cantidad de días en un mes en javascript
// instantiate a date object
var dt = new Date();// dt.getMonth() will return a month between 0-11// we add one to get to the last day of the month
// so that when getDate()is called it will return the last day of the month
var month = dt.getMonth()+1;
var year = dt.getFullYear();// this line does the magic (in collab with the lines above)
var daysInMonth = new Date(year, month,0).getDate();
Agradecemos que quieras favorecer nuestra labor añadiendo un comentario y dejando una valoración te damos las gracias.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)