# array-equal **Repository Path**: mirrors_addons/array-equal ## Basic Information - **Project Name**: array-equal - **Description**: Check if two arrays are equal - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-05-03 - **Last Updated**: 2025-08-09 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # array-equal > Check if two arrays are equal It checks that the elements and order are the same. ## Install ```sh npm install array-equal ``` ## Usage ```js import arrayEqual from 'array-equal'; arrayEqual([1, 2, 3], [1, 2, 3]); //=> true arrayEqual([1, 2, 3], [1, 2, 3, 4]); //=> false ```