Skip to content

Instantly share code, notes, and snippets.

@oriolrivera
Last active August 29, 2015 14:07
Show Gist options
  • Save oriolrivera/3915edb56cf2a71aaed6 to your computer and use it in GitHub Desktop.
Save oriolrivera/3915edb56cf2a71aaed6 to your computer and use it in GitHub Desktop.
Fecha y Hora en Javascript
var fecha = new Date();
alert("Día: "+fecha.getDate()+"\nMes: "+(fecha.getMonth()+1)+"\nAño: "+fecha.getFullYear());
alert("Hora: "+fecha.getHours()+"\nMinuto: "+fecha.getMinutes()+"\nSegundo: "+fecha.getSeconds()+"\nMilisegundo: "+fecha.getMilliseconds());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment