# \_.compareArrays

### \_.compareArrays(arrays)

> **Parameters:**

* **arrays \[arrays or array of arrays]:** <mark style="color:yellow;">`the array to be compared`</mark>

> **Example**:

```javascript
_.compareArrays([1,2,3],[1,2,3])
// => true
_.compareArrays([2,3],[1,2,3])
// => false
```
