JavaScript;
Most people nowadays rely a lot on server-side development, for basically almost anything that happens on a web page...even trivial tasks like table-sorting; tasks that can be accomplished (much faster) on the client's computer. And well you can't really blame them since most languages thought at schools, such as .net and java, revolve almost completely on server-side processing.
You may have the misconception that JavaScript is just about image swapping and rollovers, and if you do, you are mistaken. The language has a lot more to offer than such simple tasks.
JavaScript is a dynamically typed, class-less object oriented language...meaning that types are associated with values, not variables...and everything in JavaScript revolves around objects, even functions. You can even simulate OO concepts, such as inheritance (and you'll be surprised that there are a couple of different ways to accomplish such as well)
Although I do recommend reading blogs and articles people write on the web, I definitely recommend even more reading a book (books, actually) from cover to cover to really learn and grasp the language. (the fun really starts when you will learn stuff such as closures and other related language techniques)
Two must-read books you will need to check out are:
- David Flanagan's JavaScript: The Definitive Guide
- Douglas Crockford's JavaScript: The Good Parts
Flanagan's book will cover every aspect of JavaScript and will talk and explain (in great detail) about the whole language...and Crockford's book talks about the good parts and best practices in JavaScript (and also the bad ones...the pitfalls to avoid)
By reading those two books (in order...Crockford's book is a bit advanced for novices) you will not only grasp the language but embrace it like you've never experienced any language before!
It doesn't mean that by learning and using JavaScript you will now do everything on the client's computer, but having the language in your arsenal of languages you can now balance between client-side and server-side processing
Hope this post has given you some insight on why you should learn JavaScript as your next programming language.
--Thank you for taking the time to actually read this lengthy post. ( I know most don't ;-) )