Skip to content

Instantly share code, notes, and snippets.

@pablocortez
Created June 12, 2016 21:48
Show Gist options
  • Save pablocortez/c30afcb016773b9292c2c30f6248021b to your computer and use it in GitHub Desktop.
Save pablocortez/c30afcb016773b9292c2c30f6248021b to your computer and use it in GitHub Desktop.
var today = new Date();
var dd = today.getDate();
var mm = today.getMonth()+1; //January is 0!
var yyyy = today.getFullYear();
if(dd<10){
dd='0'+dd
}
if(mm<10){
mm='0'+mm
}
var today = yyyy+'-'+mm+'-'+dd;
console.log(today);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment