Skip to content

Instantly share code, notes, and snippets.

@johnadan
Created June 2, 2022 03:36
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 johnadan/02f12e0d6d7256603cbb97f5e5e4a032 to your computer and use it in GitHub Desktop.
Save johnadan/02f12e0d6d7256603cbb97f5e5e4a032 to your computer and use it in GitHub Desktop.
change date format to string in javascript
const dateValue = (datevalue);
const options = {year: 'numeric', month: 'long', day: 'numeric'};
const dateFormatted = new Date(dateValue).toLocaleDateString('en-US', options);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment