Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created March 22, 2020 01:15
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/a4fd5bef0b99857df03a2808151d9bd8 to your computer and use it in GitHub Desktop.
Save parzibyte/a4fd5bef0b99857df03a2808151d9bd8 to your computer and use it in GitHub Desktop.
const formatearFecha = fecha => {
const mes = fecha.getMonth() + 1; // Ya que los meses los cuenta desde el 0
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