191 B
191 B
Capitalize first letter
Use toUpperCase() to capitalize first letter, slice(1) to get the rest of the string.
var capitalize = str => str[0].toUpperCase() + str.slice(1);
Use toUpperCase() to capitalize first letter, slice(1) to get the rest of the string.
var capitalize = str => str[0].toUpperCase() + str.slice(1);