Skip to content

Instantly share code, notes, and snippets.

@elsheikh21
Created January 17, 2018 09:11
Show Gist options
  • Save elsheikh21/42b535c6f097bc9a28104dd65053a298 to your computer and use it in GitHub Desktop.
Save elsheikh21/42b535c6f097bc9a28104dd65053a298 to your computer and use it in GitHub Desktop.
function currentDateTime() {
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 date = dd + "/" + mm + "/" + yyyy;
console.log(date); // print the current date
var hh = today.getHours();
var mm = today.getMinutes();
var time = hh + ":" + mm;
console.log(time); // print the current time
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment