Category
Uncapitalizes the first letter of a string.
Time complexity: O(n)
Space complexity: O(n)
Text to uncapitalize
Uncapitalized string
String
uncapitalize('HELLO'); // hELLO Copy
uncapitalize('HELLO'); // hELLO
capitalize for the inverse operation
Uncapitalizes the first letter of a string.
Time complexity: O(n)
Space complexity: O(n)