Created
September 28, 2025 06:39
-
-
Save pramodjodhani/c62498b86e9b28ce288db2967e9c3657 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const tasks = [ | |
| {id: 1, fav: false}, | |
| {id: 2, fav: true}, | |
| {id: 3, fav: true}, | |
| {id: 4, fav: false}, | |
| ]; | |
| tasks.reduce((p,c) => { | |
| return c.fav ? p++ : p; | |
| }, 0); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment