Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created April 19, 2018 22:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/933c0e8937d5675b96b23469941b5171 to your computer and use it in GitHub Desktop.
Save parzibyte/933c0e8937d5675b96b23469941b5171 to your computer and use it in GitHub Desktop.
function diasEnUnMes(mes, año) {
mes = mes.toUpperCase();
var meses = ["ENERO", "FEBRERO", "MARZO", "ABRIL", "MAYO", "JUNIO", "JULIO", "AGOSTO", "SEPTIEMBRE", "OCTUBRE", "NOVIEMBRE", "DICIEMBRE"];
return new Date(año, meses.indexOf(mes) + 1, 0).getDate();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment