array.join-vs-string.concat
JavaScript performance comparison
Preparation code
<script>
Benchmark.prototype.setup = function() {
var alphabet = "a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z";
var alphatmp = [];
for (i = 0; i < 20; i++)
alphatmp.push(alphabet);
var str_to_split = alphatmp.join(',');
var myarray = str_to_split.split(',');
};
</script>
Test runner
Warning! For accurate results, please disable Firebug before running the tests. (Why?)
Java applet disabled.
| Test | Ops/sec | |
|---|---|---|
array.join |
|
pending… |
String.concat |
|
pending… |
string.concat.withIL |
|
pending… |
array.join.withPush |
|
pending… |
You can edit these tests or add even more tests to this page by appending /edit to the URL.
0 comments