Run details:
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36
Chrome 139
Mac OS X 10.15.7
Desktop
8 months ago
Test name Executions per second
myCopy = _.uniqBy(MyArr, (obj) => obj.a); 1522941.2 Ops/sec
const seen = new Set(); myCopy = MyArr.filter(item => { if (seen.has(item.a)) { return false; } seen.add(item.a); return true; }); 1488105.9 Ops/sec
const seen = new Map(); myCopy = MyArr.filter(item => { if (seen.has(item.a)) { return false; } seen.set(item.a, true); return true; }); 1397780.2 Ops/sec
HTML Preparation code:
Script Preparation code:
Tests:
  • uniqBy

  • Set

  • Map