Files
30-seconds-of-code/snippets/takeRightWhile.md
Angelos Chalaris 611729214a Snippet format update
To match the starter (for the migration)
2019-08-13 10:29:12 +03:00

17 lines
490 B
Markdown

---
title: takeRightWhile
tags: array,function,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.
```js
const takeRightWhile = (arr, func) =>
arr.reduceRight((acc, el) => (func(el) ? acc : [el, ...acc]), []);
```
```js
takeRightWhile([1, 2, 3, 4], n => n < 3); // [3, 4]
```