Plus Equals New vs Equals Old Plus New
JavaScript performance comparison
Info
I've always used
foo += bar;
for string concatenation but I'm curious how it performs against
foo = foo + bar;
at high volume.
Preparation code
<script>
Benchmark.prototype.setup = function() {
var a = 'hello';
var b = ' world, ';
};
</script>
Test runner
Warning! For accurate results, please disable Firebug before running the tests. (Why?)
Java applet disabled.
| Test | Ops/sec | |
|---|---|---|
A Plus Equals B |
|
pending… |
A Equals A plus B |
|
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 scunliffe
- Revision 3: published by Russell Dempsey
0 comments