helloWorld to Hello World
Temitope Ayodele
Posted on December 14, 2020
To convert camelCase string to Title Case (ES6)
const convertCamelToTitleCase = (camelCase) =>
camelCase
.replace(/([A-Z])/g, (match) => ` ${match}`)
.replace(/^./, (match) => match.toUpperCase())
//Example: convertCamelToTitleCase('todayILearned')
//Result: Today I Learned
💖 💪 🙅 🚩
Temitope Ayodele
Posted on December 14, 2020
Join Our Newsletter. No Spam, Only the good stuff.
Sign up to receive the latest update from our blog.
Related
todayilearned There's more than just console.log()....other useful ways to use the console in javascript
September 30, 2020