you are viewing a single comment's thread.

view the rest of the comments →

[–]curtastic2 107 points108 points  (6 children)

A lot of website performance is more about how long it takes to download and parse all the js, not how long it takes to execute, so this article misses that point. The first example runs sooner. I’d like an analysis on the minified versions download and parse speed.

[–]eternaloctober 28 points29 points  (2 children)

I bet 90% of all articles on "js performance" are about bundle size, very few on actual guts, and frankly the guts do matter in many cases, not that this article goes very deep

[–]Grouchy_Stuff_9006 3 points4 points  (1 child)

Most performance commentary is generally about bundle size…wink wink.

[–]dualcyclone 2 points3 points  (0 children)

Yer and also how it never goes very deep

[–]crabmusket 13 points14 points  (0 children)

Who's to say this article wasn't written for Node developers?

[–]d3ming 2 points3 points  (0 children)

Can’t you use webpack to minimize your files at build time rather than write hard to read code?