From 9e2d962caddb3da4f1027336e48c468d9a9f239d Mon Sep 17 00:00:00 2001 From: Angelos Chalaris Date: Tue, 18 Feb 2020 17:43:53 +0200 Subject: [PATCH] Update includesAll.md --- snippets/includesAll.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snippets/includesAll.md b/snippets/includesAll.md index 1bfe05973..273a0106b 100644 --- a/snippets/includesAll.md +++ b/snippets/includesAll.md @@ -3,7 +3,7 @@ title: includesAll tags: array,beginner --- -Returns `true` if all the elements ιν `values` are included in `arr`, `false` otherwise. +Returns `true` if all the elements in `values` are included in `arr`, `false` otherwise. Use `Array.prototype.every()` and `Array.prototype.includes()` to check if all elements of `values` are included in `arr`.