Title Case

Capitalize the first letter of each word in a string.

Code

General
str.replace(/\b\w/g, char => char.toUpperCase());

Parameters

The string to convert to title case

Browser·fetch() may be limited by CORS

More JavaScript Snippets