Skip to content

Instantly share code, notes, and snippets.

@Momciloo
Created July 12, 2020 11:02
Show Gist options
  • Save Momciloo/fd3f7f1391958936b9e9ba8355cdff01 to your computer and use it in GitHub Desktop.
Save Momciloo/fd3f7f1391958936b9e9ba8355cdff01 to your computer and use it in GitHub Desktop.
Date string to human-readable format
const dateString = '2020-05-14T04:00:00Z'
const formatDate = (dateString) => {
const options = { year: "numeric", month: "long", day: "numeric" }
return new Date(dateString).toLocaleDateString(undefined, options)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment