DEV Community

Discussion on: Javascript remove duplicate from array of objects

 
peerreynders profile image
peerreynders • Edited

in general a while loop is the fastest

Your sample code moves the temporary objects to the top level which exaggerates the difference.

but when you need to return an array instead its slows the function down.

There is no reason to store the objects in a Set in the first place so that conversion is entirely unnecessary.

One also has to keep in mind that V8 has a spread optimization which is going to penalize overuse of the spread syntax on other JavaScript engines.

Perflink

  1. withFilter
  2. withLoopSet
  3. withLoopIndexOf
  4. withLoop
  5. withSet
  6. withFor
  7. control (withFor)


Results for Chromium 96 on Ubuntu 20.04

The shape of that chart changes wildly with each run. To some degree that is to be expected as JavaScript performance is notoriously unpredictable.

Judging from the results on Firefox (94.0)

combining filter with Set doesn't help that much away from V8.