capitalize
Capitalize the first letter of a string. Only affects the first character.
string(required): the string to capitalize
utlx
capitalize("hello world") // "Hello world"
capitalize("HELLO") // "HELLO" (already uppercase — no change)
capitalize("") // ""