Run details:
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.106 YaBrowser/21.6.0.1108 Yowser/2.5 Safari/537.36
Yandex Browser 21
Mac OS X 10.15.7
Desktop
3 years ago
Test name Executions per second
Using indexOf 90.7 Ops/sec
Using lastIndexOf 74.2 Ops/sec
Using a Set 656.2 Ops/sec
Script Preparation code:
AخA
 
var array = [];
for (let i = 0; i < 100000; i++) {
   array.push(Math.floor((Math.random() * 10) + 1));
}
Tests:
  • Using indexOf

     
    array.filter((item, index) => array.indexOf(item) != index);
  • Using lastIndexOf

     
    array.filter((item, index) => array.lastIndexOf(item) != index);
  • Using a Set

     
    [...new Set(array)]