Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created March 22, 2020 01:28
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/d050f7496aeaa1e91d91e7cc6076e226 to your computer and use it in GitHub Desktop.
Save parzibyte/d050f7496aeaa1e91d91e7cc6076e226 to your computer and use it in GitHub Desktop.
// https://parzibyte.me/blog
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)}`;
};
// Probar con la fecha de hoy
const fechaDeHoy = new Date();
const fechaFormateada = formatearFecha(fechaDeHoy);
console.log(fechaFormateada);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment