Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Last active March 10, 2021 13:40
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/696ea8e4b57c12c37f1b49dd0abdb358 to your computer and use it in GitHub Desktop.
Save parzibyte/696ea8e4b57c12c37f1b49dd0abdb358 to your computer and use it in GitHub Desktop.
const nombreDelDiaSegunFecha = fecha => [
'domingo',
'lunes',
'martes',
'miércoles',
'jueves',
'viernes',
'sábado',
][new Date(fecha).getDay()];
const fechasParaProbar = [
"2013-01-18 17:00:00",
"2013-08-03 10:00:00",
"1997-06-21 22:00:00",
];
fechasParaProbar.forEach(fecha => {
console.log(`En ${fecha} fue ${nombreDelDiaSegunFecha(fecha)}`);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment