Slice vs Substr vs Substring Methods (v113)

Revision 113 of this benchmark created by pusha 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 = "";
  // Large = 10,000
  for (var i = 0; i < 10000; i++) {
        longString += i % 10;
  }
</script>

Test runner

Ready to run.

Testing in
TestOps/sec
substring
longString.substring(17);
 
ready
slice
longString.slice(17);
 
ready
substr
longString.substr(17);
 
ready

Revisions

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