Created
February 10, 2021 10:32
-
-
Save davidroyer/0c55e2e8a0245b44b3a170252d618758 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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