From d8a1c09133151f6056fba906323a174657d923c0 Mon Sep 17 00:00:00 2001 From: Angelos Chalaris Date: Mon, 1 Oct 2018 19:32:54 +0300 Subject: [PATCH] Update takeRightWhile.md --- snippets/takeRightWhile.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snippets/takeRightWhile.md b/snippets/takeRightWhile.md index e62b63940..277ff969b 100644 --- a/snippets/takeRightWhile.md +++ b/snippets/takeRightWhile.md @@ -2,7 +2,7 @@ Removes elements from the end of an array until the passed function returns `true`. Returns the removed elements. -Loop through the array, using a `Array.reduceRight` and accumulate element if function returns falsy value. +Loop through the array, using a `Array.prototype.reduceRight()` and accumulating elements while the function returns falsy value. ```js const takeRightWhile = (arr, func) => arr.reduceRight((acc, el) => func(el) ? acc : [el, ...acc], []);