type-inference-performance (v13)

Revision 13 of this benchmark created on


Setup

var array_of_ints = [0.5, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11];
    var array_of_mixed = [0.5, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, undefined];
    
    function sum_of_ints() {
      for (var i = 0; i < array_of_ints.length; i++) {
        var v = array_of_ints[i];
      }
    }
    
    function sum_of_mixed() {
      for (var i = 0; i < array_of_mixed.length; i++) {
        var v = array_of_mixed[i];
      }
    }

Test runner

Ready to run.

Testing in
TestOps/sec
array of ints
sum_of_ints();
ready
array of mixed
sum_of_mixed();
ready

Revisions

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