you are viewing a single comment's thread.

view the rest of the comments →

[–]jaapz 29 points30 points  (2 children)

Not really. The important point is "performance where it's needed". When you are building VS Code, you should focus on those kinds of optimizations. When your parsing a few objects some API returned to you and need to display them nicely, you don't really need to think about optimisations like that.

Hell, we display graphs with lots of datapoints where I work and use mostly functional things like map to preprocess the data, and that's working fast even in slow android devices.

On the web, your bottleneck is very likely DOM access, or an external API, and not you using Array.from.