Files
30-seconds-of-code/snippets/capitalize-first-letter.md
Angelos Chalaris 282bf85f4f Build README
2017-12-12 11:16:47 +02:00

8 lines
216 B
Markdown

### Capitalize first letter
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);
```