Run details:
Mozilla/5.0 (Linux; Android 10; Redmi Note 9 Pro) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.105 Mobile Safari/537.36
Chrome Mobile 89
Android
Mobile
4 years ago
Test name Executions per second
_.uniq 1354403.9 Ops/sec
set 837831.3 Ops/sec
uniq by filter 2591809.0 Ops/sec
HTML Preparation code:
AخA
 
1
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.11/lodash.js"></script>
Script Preparation code:
 
var elements = [1,2,3,1,2,4,2,3,5,3]
Tests:
  • _.uniq

     
    _.uniq(elements)
  • set

     
    [...new Set(elements)]
  • uniq by filter

     
    elements.filter((v, i, a) => a.indexOf(v) === i)