string concat vs array join
JavaScript performance comparison
Info
Test the performance difference between string concact and array join for a large (10,000) number of words.
Preparation code
<script>
Benchmark.prototype.setup = function() {
var words = ['this', 'is', 'a', 'test'];
var text = words[0];
var a = [words[0]];
var i;
var text2;
};
</script>
Test runner
Warning! For accurate results, please disable Firebug before running the tests. (Why?)
Java applet disabled.
| Test | Ops/sec | |
|---|---|---|
Concat |
|
pending… |
Join |
|
pending… |
Compare results of other browsers
Revisions
You can edit these tests or add even more tests to this page by appending /edit to the URL. Here’s a list of current revisions for this page:
- Revision 1: published by Jason
- Revision 2: published by Kyle Simpson
- Revision 3: published by Kyle Simpson
- Revision 4: published
- Revision 5: published by Rcdmk
- Revision 6: published by Schleuse
- Revision 7: published by Morten Sjoegren
- Revision 8: published
- Revision 9: published and last updated
- Revision 10: published
- Revision 11: published
1 comment
Hi Kyle,
I've just discovered your website today and i would like to know if you have some pdf supports about js performance ? I'm front-end developper and i would like product the best code according the best practices. :-) Thanks a lot in advance.
Kind regards,
Quentin.