Skip to content

Instantly share code, notes, and snippets.

@davidroyer
Created February 10, 2021 10:32
Show Gist options
  • Save davidroyer/0c55e2e8a0245b44b3a170252d618758 to your computer and use it in GitHub Desktop.
Save davidroyer/0c55e2e8a0245b44b3a170252d618758 to your computer and use it in GitHub Desktop.
function titleCaseText(text) {
const words = text.split('-')
return words
.map(word => word.charAt(0).toUpperCase() + word.substring(1).toLowerCase())
.join(' ')
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment