Build README

This commit is contained in:
Angelos Chalaris
2017-12-12 15:38:34 +02:00
parent 2964ac486b
commit c83394b44a
2 changed files with 16 additions and 9 deletions

View File

@ -0,0 +1,7 @@
### Capitalize first letter of every word
Use `replace()` to match the first character of each word and `toUpperCase()` to capitalize it.
```js
var capitalizeEveryWord = str => str.replace(/\b[a-z]/g, char => char.toUpperCase());
```