Capitalizes the first letter of a string.
Time complexity: O(n)
Space complexity: O(n)
Text to capitalize
Capitalized string
String
capitalize('hello'); // 'Hello' Copy
capitalize('hello'); // 'Hello'
uncapitalize for the inverse operation
Capitalizes the first letter of a string.
Time complexity: O(n)
Space complexity: O(n)