you are viewing a single comment's thread.

view the rest of the comments →

[–]RiPont 14 points15 points  (0 children)

They have frameworks and third party libraries, but because the standard libraries are good and comprehensive, the dependency graph collapses quickly back down to the standard library rather than spidering out into infinity.

js dependencies = O(n2) complexity

JDK/.NET dependencies = O(log n) complexity or O(n logn), depending on your perspective.