in_array vs. $.inArray vs. indexOf() (v5)

Revision 5 of this benchmark created on


Preparation HTML

<script src="//ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>

Setup

function in_array(item,arr) {
          for (var p=0;p<arr.length;p++) {
             if (item == arr[p]) {
                return true;
             }
          }
          return -1;
    }
    
    var arr = [1, 2, 3, 4, 5, "test", "", undefined, null, {}, true];

Test runner

Ready to run.

Testing in
TestOps/sec
$.inArray
$.inArray(5, arr);
$.inArray(50, arr);
ready
in_array
in_array(5, arr);
in_array(50, arr);
ready
indexOf
arr.indexOf(5);
arr.indexOf(50);
ready

Revisions

You can edit these tests or add more tests to this page by appending /edit to the URL.