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

21 lines
516 B
Markdown

---
title: forEachRight
tags: array,intermediate
---
Executes a provided function once for each array element, starting from the array's last element.
- Use `Array.prototype.slice()` to clone the given array, `Array.prototype.reverse()` to reverse it and `Array.prototype.forEach()` to iterate over the reversed array.
```js
const forEachRight = (arr, callback) =>
arr
.slice()
.reverse()
.forEach(callback);
```
```js
forEachRight([1, 2, 3, 4], val => console.log(val)); // '4', '3', '2', '1'
```