![]() |
VOOZH | about |
Lodash _.upperFirst() method is used to convert the first character of the string to the upper case.
_.upperFirst( [string = '']);This method returns the converted string.
Example 1: In this example, we are printing the first alphabet capital of the given string in the console by the use of the lodash _.upperFirst() method.
Output:
'Geeks-For-geeks'Example 2: In this example, the given string is already in capital letters so it will print it same.
Output:
'GEEKS FOR GEEKS'