jsPerf.app is an online JavaScript performance benchmark test runner & jsperf.com mirror. It is a complete rewrite in homage to the once excellent jsperf.com now with hopefully a more modern & maintainable codebase.
jsperf.com URLs are mirrored at the same path, e.g:
https://jsperf.com/negative-modulo/2
Can be accessed at:
https://jsperf.app/negative-modulo/2
Different ways to concatenate strings together
<script>
var arr = ['a', 'b', 'c', 'd']
// The constructor initializes an Array
StringBuilderEx = function()
{
this._buffer = new Array();
}
StringBuilderEx.prototype =
{
// This method appends the string into an array
append : function(text)
{
this._buffer[this._buffer.length] = text;
},
// This method does concatenation using JavaScript built-in function
toString : function()
{
return this._buffer.join("");
}
};
// Assigns our class to Array class
var StringBuilderEx = Array;
// Using prototype I link function append to push and toString to join
Array.prototype.append=Array.prototype.push;
Array.prototype.toString=Array.prototype.join;
</script>
Ready to run.
Test | Ops/sec | |
---|---|---|
Direct concatenation |
| ready |
Individual += statements |
| ready |
Individual statements |
| ready |
Using Array#join |
| ready |
Single individual statement |
| ready |
Function based (for) |
| ready |
Stringbuilder Class |
| ready |
You can edit these tests or add more tests to this page by appending /edit to the URL.