Build README

This commit is contained in:
Angelos Chalaris
2017-12-12 11:16:47 +02:00
parent 82f668d553
commit 5be9783159
2 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
### Capitalize first letter
Use `toUpperCase()` to capitalize first letter, `slice(1)` to get the rest of the string.
Use `sice(0,1)` and `toUpperCase()` to capitalize first letter, `slice(1)` to get the rest of the string.
```js
var capitalize = str => str.slice(0, 1).toUpperCase() + str.slice(1);