Files
30-seconds-of-code/snippets/takeRightWhile.md
Isabelle Viktoria Maciohsek 8cb9469ff4 Re-tag function snippets
2020-10-18 19:42:11 +03:00

484 B

title, tags
title tags
takeRightWhile array,intermediate

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.prototype.reduceRight() and accumulating elements while the 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]