Typed array iteration (v3)

Revision 3 of this benchmark created by vjeux on


Description

Testing with Int32

Preparation HTML

<script>
  var classic = new Array(500);
  var unfixed = new Int32Array(); // Don't do this
  var fixed = new Int32Array(500);
  
  for (var i = 0; i < 500; ++i) {
   classic[i] = 0;
   unfixed[i] = 0;
   fixed[i] = 0;
  }
</script>

Test runner

Ready to run.

Testing in
TestOps/sec
Classic
for (var ii = 0; ii < 500; ++ii) {
 classic[ii] += 1;
}
ready
Unfixed
for (var ii = 0; ii < 500; ++ii) {
 unfixed[ii] += 1;
}
ready
Fixed
for (var ii = 0; ii < 500; ++ii) {
 fixed[ii] += 1;
}
ready

Revisions

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