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

11 lines
442 B
Markdown

### Capitalize first letter
Use `slice(0,1)` and `toUpperCase()` to capitalize first letter, `slice(1)` to get the rest of the string.
Omit the `lowerRest` parameter to keep the rest of the string intact, or set it to `true` to convert to lower case.
```js
const capitalize = (str, lowerRest = false) =>
str.slice(0, 1).toUpperCase() + (lowerRest? str.slice(1).toLowerCase() : str.slice(1));
// capitalize('myName', true) -> 'Myname'
```