for vs while (v104)

Revision 104 of this benchmark created by curiousdannii on


Preparation HTML

<script>
  var myArray = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20];
</script>

Test runner

Ready to run.

Testing in
TestOps/sec
for loop
for (var i = 0, len = myArray.length; i < len; i++) {

}
ready
while loop
var i = 0, len = myArray.length;
while ( i < len) {
i++;
}
ready

Revisions

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