From 690b1819951749cb71ac788585f3ada55493dbfb Mon Sep 17 00:00:00 2001 From: Angelos Chalaris Date: Tue, 5 Nov 2019 14:29:50 +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 f0afdceb9..1bfe05973 100644 --- a/snippets/includesAll.md +++ b/snippets/includesAll.md @@ -3,7 +3,7 @@ title: includesAll tags: array,beginner --- -Returns `true` if all the elements of values are included in arr , `false` otherwise. +Returns `true` if all the elements ιν `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`.