string insert

JavaScript performance comparison

Test case created

Preparation code

 
<script>
Benchmark.prototype.setup = function() {
    var testString = "abcd";
    var testInsert = "y";
    var test = "";
    var testArray = testString.split("");
};
</script>

Test runner

Warning! For accurate results, please disable Firebug before running the tests. (Why?)

Java applet disabled.

Testing in unknown unknown
Test Ops/sec
string
testString = testString.substr(0, 2) + testInsert + testString.substr(2, 4);
pending…
array
testArray.splice(testInsert, 0, 2);
pending…

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

Compare results of other browsers

0 comments

Add a comment