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.
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
1 comment
There’s no need to write out the loop yourself. jsPerf will automatically loop the test code bodies.