Monday, October 14, 2013

Why You Need To Learn Javascript!


You buy stuff online (Amazon).  You socialize online (Facebook).  You get your email online (Gmail).  You store your files online (Dropbox).  I could make a whole article listing out things that people do online on a daily basis, but that's not the point of the article.  Simply put, when you need something you can usually find some web portal that does exactly what you want.

I'm going to assume that anyone taking the time to read this is probably on the internet enough to have seen several of the web applications that I am describing, and if you have been on the internet long enough, then you probably noticed there was a point where web sites stopped being individual pages that loaded every time you interacted with it and became web applications where pages dynamically change as you clicked on links and buttons.  One example of this is when Facebook chat shows up at whatever point someone messages you.  You don't have to refresh the page to see if the chat log changed.  All of those changes are thanks to JavaScript.


What can you do with JavaScript?

  • You can change content on a web page without reloading the web page.
  • You can animate elements on a page, for example:
    • You can make a elements fade in or out.
    • You can move elements around the page.
    • Etc.  (This could be a really long list)
  • You can access the graphics card to make 3D video games and other cool projects in browser like this: Rome - 3 Dreams of Black.
  • You can write multi-threaded code that takes full advantage of all of the processor cores on your computer.
  • You can dynamically send and receive data across the internet in the form of JSON (JavaScript Object Notation) without having to convert it to some language like XML.
  • You can write entire server-side applications using Node.js.
    • If you haven't heard of this and doubt its usefulness, then check out these companies that are using it: Microsoft, Yahoo, LinkedIn, The New York Times, EBay, and Dow Jones.  Those aren't just big names.  Those are huge names.

Why should you learn JavaScript?

  1. Even a totally new and inexperienced JavaScript developer can write useful code easily.
  2. You don't have to learn complicated libraries to build GUIs.  It just connects to web pages.
  3. You don't have to use special complex libraries to handle asynchronous event calls.
  4. It is the only language you can learn that can do everything you need it to (there are exceptions).
  5. It interfaces with most other languages.
  6. Pretty much anything that you need to do with JavaScript you can do for free.  You can download the software for free and you can learn how to use it for free.


Who should learn JavaScript?


Anyone who develops software

If you plan on developing web applications, then you need to know JavaScript (it's your job).  If you don't plan on developing web applications, then (barring some exceptions) you should rethink your team/companies development strategy.  Web applications run on every computer while only having to be written once, unlike Windows programs, Mac programs, or Linux programs.

Anyone who needs to use computers in their work

This group of users doesn't need to master JavaScript, but understanding how code works would allow these people to talk to advanced computer programmers and be able to communicate how to develop apps that they need.  They would also be able to hack something simple together that can easily do part of their job for them.  Code takes a long time to write, but once it's written you don't have to think about it anymore.  It just does what it needs to do.

Students

When I went through school, it was recommended (not mandatory) that we learn to type on a computer.  More and more, though, it is becoming essential that people have the technical ability to work with computers.  There is no computer language other than JavaScript that can be learned on it's own and work at all levels of an application.  Also, it is free!

2 comments:

  1. To critique: It starts off basic, as if you're addressing beginners, then when you move into the section titled "What can you do with JavaScript?" you assume that the reader knows what an element is. A couple more technical assumptions like that exist in there. I would move the last section, "Who should learn JavaScript?" up in the article to be the second section. Otherwise, it's a pretty good article! It made me want to go learn Javascript!

    ReplyDelete
    Replies
    1. Yeah, I knew that some of the technical stuff was too much. I need to go back and work on that. I agree about the sections too.

      Delete