Skip to content

Commit 34e36ed

Browse files
committed
reduce examaple 3, fix: #13
1 parent ba35e9e commit 34e36ed

File tree

2 files changed

+25
-1
lines changed

2 files changed

+25
-1
lines changed

All Lessons/reduceExample3.js

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
// find the how many people are of 26, 76, 35. 23 age
2+
const users = [
3+
{ firstName: "Riyaz", lastName: "Ahamad", age: 23},
4+
{ firstName: "Donald", lastName: "Trump", age: 76},
5+
{ firstName: "Cristiano", lastName: "Ronaldo", age: 35},
6+
{ firstName: "Albert", lastName: "Einstein", age: 23},
7+
];
8+
9+
const output = users.reduce(function (acc, curr){
10+
11+
if(acc[curr.age]){
12+
acc[curr.age] = ++acc[curr.age]
13+
}
14+
else {
15+
acc[curr.age] = 1
16+
}
17+
return acc;
18+
}, {});
19+
20+
console.log(output);
21+
22+
// OUTPUT
23+
// {23: 2, 35: 1, 76: 1}

index.html

+2-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ <h1>Hello JavaScript</h1>
2323
<!-- <script src="/All Lessons/filter.js"></script> -->
2424
<!-- <script src="/All Lessons/filterExample3.js"></script> -->
2525
<!-- <script src="/All Lessons/reduceExample1.js"></script> -->
26-
<script src="/All Lessons/reduceExample2.js"></script>
26+
<!-- <script src="/All Lessons/reduceExample2.js"></script> -->
27+
<script src="/All Lessons/reduceExample3.js"></script>
2728

2829

2930
</body>

0 commit comments

Comments
 (0)