Skip to content

Instantly share code, notes, and snippets.

@timwis
Created July 12, 2016 10:27
Show Gist options
  • Save timwis/aba6d2a36daf5016fd17de5d2003c18a to your computer and use it in GitHub Desktop.
Save timwis/aba6d2a36daf5016fd17de5d2003c18a to your computer and use it in GitHub Desktop.
function formatDate (iso) {
const [year, month, day] = iso.split('T')[0].split('-')
return `${+month}/${+day}/${year}`
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment