Java is Better Than JavaScript

Tоday I was participating in a discussion on one Java forum – the question was if Java is easy or difficult programming language to learn. IMO, Java is not difficult to lear, to teach, and to use. It’s a strongly-typed compiled language with tools that help you out to identify most of the error before you even run the program.

While participating in this discussion I was writing code in a different programming language called JavaScript, which gave me a chance to illustrate that lots of things Java developer take for granted, while there are people who work in a more hostile environment called JavaScript.

I had a working program, and decided to add JavaScript handler function to illustrate HTML form submission with jQuery for our upcoming book. I’ve been writing this code in Eclipse-based IDE called Aptana. I’ve added this handler for the submit event to a Donation form:

$('#donate-form-container').submit(function(){
  var formData = $(this).serialize();
  console.log("The Donation form is serialized: " + formData);
  returm false;  
});

Ran the program – it rendered the Web page, HTML looks fins, but nothing worked. IDE didn’t give any errors. Started a browser debugger – Firebug. Now I’ll going to put a breakpoint in this newly added function and find the problem. How hard could it be? I’ve added just this little fragment to a working program. Easy Peasy.

Oops. Where is my main.js? Nowhere to be found. Only jQuery script is available.

s1

Was my main.js even downloaded? Let’s check the Network tab. Yes, it’s here:

s2

After applying deductive reasoning (as in Sherlock Holmes stories) I figured out that the script has arrived to the browser, which instead of adding it to the DOM, showed a middle finger without explaining why. As any normal person, I started to to find who someone else to blame. May be this Firebug is buggy and just doesn’t want to show my nice script? Tried Chrome with Developer Tools – same story. The script arrived, got the finger and I have nothing to debug.

Well, there is no one else to blame. Let me just re-read my own code. Man, I misspelled the word return and wrote “returm false;” instead, which deserves a capital punishment. Changing m to n did the trick, and now both Chrome and Firefox are happy to add my JavaScript code to DOM.

What’s the moral of this story:
1. Java developers should know that they take lots of things for granted and should not complain that their life is difficult!
2. The fact that it takes less code to write Hello World program in JavaScript doesn’t mean that it’s an easy programming language. Don’t trust me? Watch this.

17 thoughts on “Java is Better Than JavaScript

  1. Strange. I have a bug in the console (firebug and chrome developer tools) –
    Uncaught SyntaxError: Unexpected token false

    Maybe the problem in your work environment? 🙂

  2. imho it’s the poor Aptana IDE
    look at this shot from JetBrains WebStorm

    also, there’s a Code > Inspect Code option

    I use the EAP (Early Access Program) version (betas) of WebStorm for free – legally 🙂

    the video was very funny, thanks, you may entertain yourself with a book JavaScript for Assholes 🙂
    https://leanpub.com/javascriptforassholes

    Будам, хочу выразить благодарность за подкасты, с удовольствием слушаю и жду мэйл с уведомление о новом подкасте из Амерички.
    О, пришло что-то там про футбол, запускаю айтюнс…

    1. I have WebStorm too – bought it legally for real money (not counterfeit bills) 🙂
      It’s definitely much better than Aptana. But for the book project I want to stick to the free IDE for as long as possible.

    1. Typescript isn’t better than javascript; It offers a different layer to the Js ecosystem such as strict-type and such.
      If your team (or project) needs the possibilities offered by Typescript than it would be a __better__ choice.

      Never will it be better 😉

Leave a comment