Skip to content

Instantly share code, notes, and snippets.

@onosendi
Last active January 5, 2022 14:22
Show Gist options
  • Save onosendi/1b10433f988ba72a07ffc73250514d0c to your computer and use it in GitHub Desktop.
Save onosendi/1b10433f988ba72a07ffc73250514d0c to your computer and use it in GitHub Desktop.
const myDict = [{ index: 1, area: 1 }, { index: 9, area: 9 }, { index: 2, area: 2 }];
const z = myDict.reduce((acc, item) => item.area > (acc?.area ?? Infinity) ? item: acc);
console.log(z);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment