DEV Community

Discussion on: Capitalize first letter in every sentence?

Collapse
 
ryansmith profile image
Ryan Smith

If you are trying to find an effective way to do this and your app uses CSS for a front-end, you can use text-transform: capitalize; to do it.

But if it is just for a JavaScript-only app or practice, the other comments will be more helpful.