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

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

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

     
    const b = array.filter((i,index,a) => a.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_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36
Chrome 107 on Mac OS X 10.15.7
View result in a separate tab
Test name Executions per second
Set spread 551322.3 Ops/sec
Array from set 633284.5 Ops/sec
Filter 1649817.1 Ops/sec