Script Preparation code:
AخA
 
var array = Array.from({length: 10000}, () => Math.floor(Math.random() * 20000));
Tests:
  • Set spread

     
    const f = [... new Set(array)]
  • Array from set

     
    const s = new Set(array)
    const l = Array.from(s)
  • Filter

     
    const b = array.filter((i,index) => array.indexOf(i)=== index)
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    Set spread
    Array from set
    Filter

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 2 years ago)
Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:101.0) Gecko/20100101 Firefox/101.0
Firefox 101 on Mac OS X 10.15
View result in a separate tab
Test name Executions per second
Set spread 2983.6 Ops/sec
Array from set 2993.9 Ops/sec
Filter 45.3 Ops/sec