Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created December 3, 2020 18:50
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/9aa3e869df51caa9f7c8b064858ea342 to your computer and use it in GitHub Desktop.
Save parzibyte/9aa3e869df51caa9f7c8b064858ea342 to your computer and use it in GitHub Desktop.
// Esta función simplemente formatea la fecha. Puedes o no usarla, no tiene que ver con el fin e inicio de mes
const formatearFecha = fecha => {
const mes = fecha.getMonth() + 1;
const dia = fecha.getDate();
return `${fecha.getFullYear()}-${(mes < 10 ? '0' : '').concat(mes)}-${(dia < 10 ? '0' : '').concat(dia)}`;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment