What is the _.head() method in Lodash?

Overview

The _.head() method in Lodash is used to get the first element of an array.

Syntax

_.head(array)
Syntax of the _.head() method

Parameter

This method accepts the following parameter:

  • array: This is the array to be queried.

Return value

This method returns the first element of the array.

Example

Let’s look at an example of the _.head() method in the code snippet below:

Console
Implementation of the _.head() method

Explanation

In the HTML tab:

  • Line 5: We import the lodash script.

In the JavaScript tab:

  • Line 2: We create an array numbers and populate it with a few values.
  • Line 5: We use the _.head() method to get the first element of the array.
  • Line 8: We print the output to the console.

Output

In the output, we see 5, which is the first element of the array.

New on Educative
Learn to Code
Learn any Language as a beginner
Develop a human edge in an AI powered world and learn to code with AI from our beginner friendly catalog
🏆 Leaderboard
Daily Coding Challenge
Solve a new coding challenge every day and climb the leaderboard

Free Resources