Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created August 7, 2019 21:30
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/dce6520b8c4262a8bffdcaad83752475 to your computer and use it in GitHub Desktop.
Save parzibyte/dce6520b8c4262a8bffdcaad83752475 to your computer and use it in GitHub Desktop.
const fechaDeAyer = () => {
let hoy = new Date();
let DIA_EN_MILISEGUNDOS = 24 * 60 * 60 * 1000;
let ayer = new Date(hoy.getTime() - DIA_EN_MILISEGUNDOS);
return ayer;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment