# 介绍

lodash是一个一套不错工具库，内部封装了很多字符串、数组、对象等常见数据类型的处理函数。由于函数过多，函数名看起来眼花缭乱，也没有过细的划分，导致很多的方法查找起来困难，所以此文档由此而生。

**目的：**

1. 为了能够在node应用项目开发时掌握lodash工具库，避免原始js方法与lodash封装方法的混用，尽量采用lodash方法。
2. 方便自己和大家快速的定位自己所需要的功能方法。
3. 让一份文档，真正的将lodash工具库变成的唯自己所用的利器。

> lodash版本：[4.17.10](https://lodash.com/docs/4.17.10)
>
> 作者：小虾米（QQ：509129）
>
> **完成进度：**
>
> Array（数组操作） **完成**
>
> Collection（集合操作） **完成**
>
> Date（日期操作） **完成**
>
> Function（操作函数） **完成**
>
> Lang（类型转换与类型判断操作） **完成**
>
> Math（数学操作） **完成**
>
> Number（数值操作） **完成**
>
> Object（对象操作） **完成**
>
> Seq **完成**
>
> String（字符串操作） **完成**
>
> Util（工具方法） **完成**
>
> Properties（略，不常用）
>
> Methods（略，不常用）

至于功能方法使用方面的一些解析，由于时间有限，不可能挨个进行一个好处的解析，我会随着自己开发所遇到时进行扩充。


---

# 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/master.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.
