helloWorld to Hello World

temmietope

Temitope Ayodele

Posted on December 14, 2020

helloWorld to Hello World

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
Enter fullscreen mode Exit fullscreen mode
💖 💪 🙅 🚩
temmietope
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

helloWorld to Hello World
todayilearned helloWorld to Hello World

December 14, 2020

Easy peasy formatting list of names
todayilearned Easy peasy formatting list of names

July 14, 2020

Easy peasy reverse words
todayilearned Easy peasy reverse words

July 12, 2020

Easy peasy split the string
todayilearned Easy peasy split the string

July 6, 2020