Files
30-seconds-of-code/snippets/takeRightWhile.md
2018-09-25 10:13:32 +04:00

420 B

takeRightWhile

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.

const takeRightWhile = (arr, func) => arr.reduceRight((acc, el) => func(el) ? acc : [el, ...acc], []);
takeRightWhile([1, 2, 3, 4], n => n < 3); // [3, 4]