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

216 B

Capitalize first letter

Use sice(0,1) and toUpperCase() to capitalize first letter, slice(1) to get the rest of the string.

var capitalize = str => str.slice(0, 1).toUpperCase() + str.slice(1);