diff --git a/snippets/allEqual.md b/snippets/allEqual.md index 8bc9ccc0d..d2c4e5b8d 100644 --- a/snippets/allEqual.md +++ b/snippets/allEqual.md @@ -1,6 +1,6 @@ ### allEqual -Check if all elements are equal +Check if all elements in an array are equal. Use `Array.every()` to check if all the elements of the array are the same as the first one.