DEV Community

Discussion on: JS Coding Question #8: Capitalize All Words In A Sentence [Not So Easy]😓😣

Collapse
 
frontendengineer profile image
Let's Code

What is your solution of choice here? Please share if you have your own solution.

Collapse
 
lukaszlukasiewicz profile image
lukaszlukasiewicz

str.replace(/(^|\s)(.)/g,match => match.toUpperCase())

Collapse
 
frontendengineer profile image
Let's Code

that works beautifully! Thanks for the snippet.