Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save thebigdatajedi/1a568214485dfb151c2a2a555ff5bc2b to your computer and use it in GitHub Desktop.
Save thebigdatajedi/1a568214485dfb151c2a2a555ff5bc2b to your computer and use it in GitHub Desktop.
One way to do it.
static getDateTime(): string {
const today = new Date();
const date = today.getFullYear() + '-' + (today.getMonth() + 1) + '-' + today.getDate();
const time = today.getHours() + ':' + today.getMinutes() + ':' + today.getSeconds();
const dateTime = date + ' ' + time;
return dateTime;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment