|
|
|
|
|
by nod
5533 days ago
|
|
That reduces the number of string appends, sure. But it is well known (see either "The Good Parts" or "High Performance Javascript" that appending strings is quadratic in JavaScript, and that the best way to assemble a large, multipart string is arrayOfStrings.join(''); * And by quadratic I mean "copies the whole string every time" such that an append loop is N^2 while a push+join is linear. |
|