If you are a developer who hates JavaScript it’s most likely due to ignorance, or because you value purity over pragmatism.
As of 2013 there are important reasons for developers to understand the good things JavaScript has to offer. But before diving in let’s make clear the ignorance premise is not an insult, and is not implying certain people have less ability as software architects. All good developers intentionally place themselves in a never-ending cycle of ignorance/discovery/learning/experience. On the contrary, if you have never felt ignorant as a developer you’re probably not pushing the boundaries of your talent.
So on to the ignorance. The three most common reasons I believe some developers still rail against JS are:
- JavaScript Did Actually Suck in the Past
- Functional Languages are Painful
- Concern that Language X is More Elegant
JavaScript Did Actually Suck in the Past
Lots of people first tried JS back when web sites first started becoming interactive. Coding JS web pages back then was indeed a nightmare. The browser consistency alone would make you pull your hair out (before JQuery helped normalize things). The language itself also had much less functionality at that time. For example, there was no exception handling and not even decent string handling. Oh, and you didn’t mind not having a debugger right? I had lots of frustration with JavaScript myself back then, but things have changed.
First off, the language is now based on standards and ECMAScript has been actively making improvements to the language for the last 15 years. ECMAScript 6 and other standards like CommonJS are making JS suitable for larger scale software development.
By chance, JavaScript is the only language to have native support for JSON, which has become one of the most popular data formats for web services.
The tooling has vastly improved. There are first class developer tools available in the browser and also for JS outside of the browser. Microsoft has made JS a first class citizen for it’s the most strategic platform to build native mobile apps. There are many nice IDE’s to choose from like WebStorm. Collaborative debugging and protyping is excellent due to tools like Plunker and JSFiddle.
Perhaps most importantly, the ecosystem of frameworks, libraries, and components available for JS in 2013 is incredibly rich. Ecosystem directly drives productivity.
Functional Languages are Painful for People Experienced with Imperative Languages
This is a real problem because JavaScript looks very similar to C based (imperative) languages but actually behaves very differently as a functional language. Developers can quickly feel an initial level of familiarity, and then get a jarring, bad taste in their mouth when forced to retrain their basic expectations. It’s a cruel trick to be lured in with comfortable curly braces and then be forced to learn what a closure is.
The key here is to not fall for the trick, and instead simply read a tiny bit on the differences between JavaScript and other languages. This won’t make you an instant functional programming expert, but you’ll know exactly what to look out for and won’t be burned by false expectations.
There are other comfort issues, such as static vs. dynamic typing that may seem like a philosophical schism, but are actually more about time in the saddle. After you’ve written a certain number of lines of JS code the discomfort will simply disappear, believe it or not.
Concern that Language X is More Elegant
Being concerned about what is the absolute most elegant programming language is valid and critically important for language designers. If you’re not a theoretician, you’re an engineer, and we know good engineering is the art of compromise. This doesn’t mean engineering isn’t or can’t be elegant. It means we don’t think about the elegance of one component in a vacuum. It’s our job to weigh many factors and optimize for the big picture.
Is Dart a more elegant language than JavaScript (not to pick on Google but Dart has received a lot of positive press recently)? Maybe. Should I learn Dart in my spare time? Probably. Should I use Dart for my next work project? Not necessarily.
Besides the advantage conferred by the massive JavaScript ecosystem, you can’t underestimate the power of ubiquity. JS started as a browser scripting language, and now it’s used in node.js to drive some very large and scalable server applications. It’s also big in mobile app development where it’s built-in as a hybrid app solution for Android and iOS, and a native solution for Windows 8 mobile devices.
If nothing else, think of your return on investment as a developer. Once you learn JavaScript well, you have the option to use it for a wider range of problems than almost any other language. A corollary to this is you have more options to participate in work you really care about.
This is not a JavaScript Love Fest
In the same spirit of why we shouldn’t hate JavaScript, we also shouldn’t become too attached to it, or any other tool or technique. JS is useful for many scenarios and is relevant to the world as of this moment. When (not if) the world is different next year, we should neither hate or love it. We should just start asking the right questions again as good engineers are supposed to do.