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/2ade890d2ebf645b6f2d0ab2c86e1a80 to your computer and use it in GitHub Desktop.
Save parzibyte/2ade890d2ebf645b6f2d0ab2c86e1a80 to your computer and use it in GitHub Desktop.
const fechaDeManana = () => {
let hoy = new Date();
let DIA_EN_MILISEGUNDOS = 24 * 60 * 60 * 1000;
let manana = new Date(hoy.getTime() + DIA_EN_MILISEGUNDOS);
return manana;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment