Skip to content

Instantly share code, notes, and snippets.

@pramodjodhani
Created September 28, 2025 06:39
Show Gist options
  • Save pramodjodhani/c62498b86e9b28ce288db2967e9c3657 to your computer and use it in GitHub Desktop.
Save pramodjodhani/c62498b86e9b28ce288db2967e9c3657 to your computer and use it in GitHub Desktop.
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