Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Last active March 10, 2021 13:37
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/4f60791ee01ee31e1f11ed62b5c9cd73 to your computer and use it in GitHub Desktop.
Save parzibyte/4f60791ee01ee31e1f11ed62b5c9cd73 to your computer and use it in GitHub Desktop.
const nombreDelDiaSegunFecha = fecha => {
return [
'domingo',
'lunes',
'martes',
'miércoles',
'jueves',
'viernes',
'sábado',
][new Date(fecha).getDay()];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment