Merge pull request #1159 from shanyuhai123/patch-1

Update: update forEachRight.md
This commit is contained in:
Angelos Chalaris
2020-06-17 21:09:42 +03:00
committed by GitHub

View File

@ -5,12 +5,12 @@ tags: array,function,intermediate
Executes a provided function once for each array element, starting from the array's last element.
Use `Array.prototype.slice(0)` to clone the given array, `Array.prototype.reverse()` to reverse it and `Array.prototype.forEach()` to iterate over the reversed array.
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(0)
.slice()
.reverse()
.forEach(callback);
```