Skip to content

Instantly share code, notes, and snippets.

@neodigm
Created February 20, 2024 19:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save neodigm/6bcb2ccec715f35e145fdbf1f57a82c7 to your computer and use it in GitHub Desktop.
Save neodigm/6bcb2ccec715f35e145fdbf1f57a82c7 to your computer and use it in GitHub Desktop.
New Extended Date Pretty - With Time this time
const prettyTimeExt = ( sDt ) => {
return new Date( sDt ).toLocaleDateString("en-US", { year: "numeric", month: "short", day: "numeric", hour: "2-digit", minute:"2-digit", second:"2-digit" } );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment