Ask HN: Why is Array.from so slow?
I made this benchmark here: https://jsperf.com/ways-to-get-a-random-string
And I lack the formal knowledge to understand why the Array.from version is about 25% as fast as the while loop version, being that they intuitively should do something similar.
Can you please help me understand?
2 comments
[ 0.30 ms ] story [ 17.5 ms ] threadRemember this: Compiler optimizations are very unreliable, small innocuous changes in code can get huge effects on performance.
Edit: Just looked at the code in the link, and Array.from is not the only difference, the other code uses string concatenation instead of array concatenation. Appending to a string in Javascript is typically a lot faster than appending to an array.
The same is true in C# if I recall correctly. Not sure if that’s still the case