# \_.first -> head（取数组第一个元素）

**语法：**

```javascript
_.head(array)
```

**源代码链接：**[source](https://github.com/lodash/lodash/blob/4.17.10/lodash.js#L7423)

**npm包链接：**[npm package](https://www.npmjs.com/package/lodash.head)

**描述：**

获取数组的第一个元素。

**开始版本：**&#x30;.1.0

## Aliases

```javascript
_.first
```

**参数：**

* `array (Array)`: 需要查询的数组。

**返回值：**

* `(*)`: 返回数组的第一个元素。

**例子：**

```javascript
_.head([1, 2, 3]);
// => 1

_.head([]);
// => undefined
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://lodash.shujuwajue.com/array/first-head.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
