From d8ee8c0c3231ddd72614e7149d84f36f22a8082b Mon Sep 17 00:00:00 2001 From: Angelos Chalaris Date: Tue, 25 Sep 2018 23:14:42 +0300 Subject: [PATCH] Update allEqual description --- snippets/allEqual.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.