VOOZH about

URL: https://www.geeksforgeeks.org/javascript/lodash-_-upperfirst-method/

⇱ Lodash _.upperFirst() Method - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Lodash _.upperFirst() Method

Last Updated : 27 Oct, 2023

Lodash _.upperFirst() method is used to convert the first character of the string to the upper case.

Syntax:

_.upperFirst( [string = '']);

Parameters:

  • string: This parameter holds the string to convert.

Return Value:

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'
Comment