Files
30-seconds-of-code/snippets/capitalize-first-letter-of-every-word.md
Angelos Chalaris 43f8529cb9 Added samples
2017-12-12 17:50:08 +02:00

9 lines
295 B
Markdown

### Capitalize first letter of every word
Use `replace()` to match the first character of each word and `toUpperCase()` to capitalize it.
```js
const capitalizeEveryWord = str => str.replace(/\b[a-z]/g, char => char.toUpperCase());
// capitalizeEveryWord('hello world!') -> 'Hello World!'
```