Skip to content

Instantly share code, notes, and snippets.

@masterk63
Created July 26, 2017 22:09
Show Gist options
  • Save masterk63/dc68df9a34ed415b63026c5fc8bff15e to your computer and use it in GitHub Desktop.
Save masterk63/dc68df9a34ed415b63026c5fc8bff15e to your computer and use it in GitHub Desktop.
utc fecha date node correccion
// npm install dateformat
// var dateformat = require('dateformat')
fechaPago = new Date(fechaPago.getUTCFullYear(),
fechaPago.getUTCMonth(),
fechaPago.getUTCDate(),
fechaPago.getUTCHours(),
fechaPago.getUTCMinutes(),
fechaPago.getUTCSeconds());
fechaPago = dateformat(fechaPago,'dd/mm/yyyy');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment