Capitalizes the first letter of a string
The string to capitalize
The string with first letter capitalized
capitalize('hello'); // 'Hello'capitalize('hello world'); // 'Hello world'capitalize(''); // '' Copy
capitalize('hello'); // 'Hello'capitalize('hello world'); // 'Hello world'capitalize(''); // ''
Capitalizes the first letter of a string