Run details:
Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.116 Safari/537.36
Chrome 53
Windows 7
Other
8 years ago
Test name Executions per second
filter 3725.2 Ops/sec
slice 200781.1 Ops/sec
Script Preparation code:
AخA
 
var arr = Array.from(Array(1000).keys());
var arr2;
var index = 100;
Tests:
  • filter

     
    arr2 = arr.filter(function(i) {
      return i !== index;
    });
  • slice

     
    arr2 = arr.slice(0,index).concat(arr.slice(index+1));