Skip to content

Commit bae6599

Browse files
authored
reduceRight
1 parent 48afc0d commit bae6599

File tree

1 file changed

+22
-1
lines changed

1 file changed

+22
-1
lines changed

README.md

+22-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# JavaScript-snippets
2-
> Click :star:if you like the project. Pull Request are highly appreciated. Follow us on [Facebook](https://www.facebook.com/snippetsJS)
2+
> Click :star: if you like the project. Pull Request are highly appreciated. Follow us on [Facebook](https://www.facebook.com/snippetsJS)
33
44
### Table of Contents
55
| No. | Questions |
@@ -39,6 +39,7 @@
3939
|33 | [replaceAll](#replaceAll)|
4040
|34 | [Required Function Params](#Required-Function-Params)|
4141
|35 | [Get input value as a number](#Get-input-value-as-a-number)|
42+
|36 | [reduceRight](#reduceRight)|
4243

4344

4445

@@ -753,4 +754,24 @@ function checkMyType(event){
753754
754755
}
755756
757+
758+
```
759+
**[⬆ Back to Top](#table-of-contents)**
760+
### reduceRight
761+
762+
```javascript
763+
764+
const arr = ["a", "b", "c", "d", "e"]
765+
766+
const reduceArray = arr.reduce((acc, current) => {
767+
return acc + current
768+
}, "")
769+
//return abcde
770+
771+
const reduceRightArray = arr.reduceRight((acc, current) => {
772+
return acc + current
773+
}, "")
774+
//return edcba
775+
756776
```
777+

0 commit comments

Comments
 (0)