DEV Community

[Comment from a deleted post]
 
nektro profile image
Meghan (she/her)

Perhaps, but reduce is more than a power of magnitude faster than split reverse join. It’s on jsperf

 
skovorodan profile image
Никита Сковорода

That microbench is taken out of context, «faster» there does not actually mean anything.

In an actual application where you would actually use the result instead of throwing it out immediately, char-by-char concatenation would consume up to an order of magnitude more memory and slow everything down.

My code to repoduce that is in a comment below, in another thread here.