Movatterモバイル変換


[0]ホーム

URL:


Skip to content
DEV Community
Log in Create account

DEV Community

Cover image for Format Current Time 🕰️
Manav Misra
Manav Misra

Posted on

     

Format Current Time 🕰️

newDate(Date.now()).toLocaleTimeString("en-US",{timeZone:"America/Chicago",})
Enter fullscreen modeExit fullscreen mode

The above code outputssomething like:4:30:05 PM.

For me, this comes in handy when running a Node server that is being watched by something likenodemon. In this way, I can see 👀 the timings and know that things are updating properly as I save my code.

Note that if you want the entire date included, just use:toLocaleString instead oftoLocaleTimeString 👆🏾.

Finally, you cansee 👀 the list here to get the correct TZstrings such as"America/Chicago".

Top comments(3)

Subscribe
pic
Create template

Templates let you quickly answer FAQs or store snippets for re-use.

Dismiss
CollapseExpand
 
konradlinkowski profile image
Konrad Linkowski
  • Joined

You should rather use Intl instead

CollapseExpand
 
codefinity profile image
Manav Misra
I'm a JS Subject Matter Expert (SME) that has spent the past few years spearheading curricula and teaching initiatives at colleges and bootcamps, in person and virtually.
  • Location
    62236
  • Education
    BS - Mech. Eng. - Missouri S&T
  • Joined

That works too...not really sure what would be the benefit.

CollapseExpand
 
konradlinkowski profile image
Konrad Linkowski
  • Joined

developer.mozilla.org/en-US/docs/W...
Intl is the new optimized API where Date objects starts to be a little obsolete.

Are you sure you want to hide this comment? It will become hidden in your post, but will still be visible via the comment'spermalink.

For further actions, you may consider blocking this person and/orreporting abuse

I'm a JS Subject Matter Expert (SME) that has spent the past few years spearheading curricula and teaching initiatives at colleges and bootcamps, in person and virtually.
  • Location
    62236
  • Education
    BS - Mech. Eng. - Missouri S&T
  • Joined

More fromManav Misra

DEV Community

We're a place where coders share, stay up-to-date and grow their careers.

Log in Create account

[8]ページ先頭

©2009-2025 Movatter.jp