array join vs string connect (v2)

Revision 2 of this benchmark created on


Test runner

Ready to run.

Testing in
TestOps/sec
array join
var str_to_split = "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";
str_to_split.replace(',','');
ready
string connect
var str_to_split = "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 myarray = str_to_split.split(",");

var output = "";
for (i=0;i<myarray.length;i++){
output += myarray[i];
}
 
ready

Revisions

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