Skip to content

Instantly share code, notes, and snippets.

@pratikagashe
Created May 2, 2020 11:53
Show Gist options
  • Save pratikagashe/74a9468108008c4d70e4f39cca0238ca to your computer and use it in GitHub Desktop.
Save pratikagashe/74a9468108008c4d70e4f39cca0238ca to your computer and use it in GitHub Desktop.
Common date format method
const d = new Date()
const date = d.getDate()
const month = d.getMonth()
const year = d.getFullYear()
return date + '/' + (month + 1) + '/' + year
// which will return somethig like 2/5/2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment