Skip to content

Instantly share code, notes, and snippets.

@hieptl
Created August 6, 2022 16:48
Show Gist options
  • Save hieptl/28f27e69e5a8dace554bda972f6d4ae4 to your computer and use it in GitHub Desktop.
Save hieptl/28f27e69e5a8dace554bda972f6d4ae4 to your computer and use it in GitHub Desktop.
How to Get the Current Date in Javascript - Format Date (HH:MM:SS)
const currentDate = new Date();
const hhMMSSTime =
currentDate.getHours() +
":" +
currentDate.getMinutes() +
":" +
currentDate.getSeconds();
console.log(hhMMSSTime);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment