Slice vs Substr vs Substring vs [ ] Methods (v24)

Revision 24 of this benchmark created by bjorn on


Description

This is comparing the runtimes of [ ], substr, substring, and slice in a string for large (10000 character) string size.

Preparation HTML

<script>
  var longString = "";
  var word = "";
  // Large = 1,000,000
  for (var i = 0; i < 1000000; i++) {
        longString += i % 10;
  }
</script>

Test runner

Ready to run.

Testing in
TestOps/sec
Substring (long)
for (i = 0; i < longString.length; i++) {
  longString.substring(i, 40000);
}
ready
Slice (long)
for (i = 0; i < longString.length; i++) {
  longString.slice(i, i + 40000);
}
ready
Substr (long)
for (i = 0; i < longString.length; i++) {
  longString.substr(i, 40000);
}
ready
[ ] (long)
for (i = 0; i < longString.length; i++) {
  for(j=0;j<40000;j++){
    word += longString[i];
  }
  word = "";
}
ready
charAt (long)
for (i = 0; i < longString.length; i++) {
  for(j=0;j<40000;j++){
    word += longString.charAt(i);
  }
  word = "";
}
ready

Revisions

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