HTML Preparation code:
AخA
 
1
<script src='https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.5/lodash.min.js'></script>
Script Preparation code:
x
 
var arr = Array.from({length: 40}, () => Math.floor(Math.random() * 40));
var newArr = null;
Tests:
  • _.uniqWith(arr, _.isEqual).length

     
    newArr = _.uniqWith(arr, _.isEqual)
  • new Set(arr).size

     
    newArr = new Set(arr)
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    _.uniqWith(arr, _.isEqual).length
    new Set(arr).size

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 2 years ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36 Edg/110.0.1587.56
Chrome 110 on Windows
View result in a separate tab
Test name Executions per second
_.uniqWith(arr, _.isEqual).length 1362417.5 Ops/sec
new Set(arr).size 1230021.5 Ops/sec