Lluís Josep Martínez
1 min readFeb 21, 2017

--

>JavaScript is not the ideal tool for functional programming, but it’s a great >tool for building large applications on very large, distributed teams

I maintain a not very large application (250k loc) with Java in the backend, vanilla JS in the front end. Even with a few thousands of JS lines, touching any function is extremely dangerous. Nobody knows who is calling that function and if it will break some UI. Therefore, no refactoring on JS functions is allowed just for precaution. Maybe it’s our fault (the code is 10 year old) but the confidence in the language is low. I can’t imagine a large application with milions of JS lines. The same crappy programmers that make crappy Java apps will create even crappier JS apps because there are so many ways to shoot yourself on the foot.

--

--