array join vs string connect (v24)

Revision 24 of this benchmark created on


Setup

Array.prototype.myJoin = function (del) {
      var str = this[0] || ''; // very lazy check
      for (var i=1; i<this.length; i++) {
        str = str + this[i];
      }
      return (str);
    }
    
    var arr = ['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'];

Test runner

Ready to run.

Testing in
TestOps/sec
array join
var str = arr.myJoin('');
 
ready
string concatenate
var str = arr.join('');
 
ready

Revisions

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