Run details:
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.75 Safari/537.36
Chrome 86
Windows
Desktop
4 years ago
Test name Executions per second
includes 130498.3 Ops/sec
has 9203647.0 Ops/sec
convert to set before includes 1858.6 Ops/sec
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:
 
var arr = _.times(8000, n => `elem_${n}`);
var se = new Set(arr)
Tests:
  • includes

     
    arr.includes('elem_7999')
  • has

     
    se.has('elem_7999')
  • convert to set before includes

     
    var converted = new Set(arr);
    converted.has('elem_7999');