Skip to content

Instantly share code, notes, and snippets.

@Vizor-M
Created June 1, 2020 05:22
Show Gist options
  • Save Vizor-M/ab2aa8eb57fa0b377e3330b6d2c28985 to your computer and use it in GitHub Desktop.
Save Vizor-M/ab2aa8eb57fa0b377e3330b6d2c28985 to your computer and use it in GitHub Desktop.

JS Date String formating

(new Date('2020-05-14T04:00:00Z'))
    .toLocaleDateString(undefined, { 
         year: "numeric", 
         month: "long", 
         day: "numeric" 
})

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment