indexOf versus while loop

JavaScript performance comparison

Test case created

Preparation code

 
<script>
Benchmark.prototype.setup = function() {
    var arr = [1,2,3,4,5,6,7,8,9,0];
};
</script>

Test runner

Warning! For accurate results, please disable Firebug before running the tests. (Why?)

Java applet disabled.

Testing in unknown unknown
Test Ops/sec
indexOf
var idx = arr.indexOf(7);
pending…
while loop
var index = 0, length = arr.length;
while (index++ < length){
    if (arr[index] === 7){ break; }
}
pending…

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

Compare results of other browsers

0 comments

Add a comment