Java Advanced Javascript Courseware Recommendations

  • Thread starter Thread starter Ryoko
  • Start date Start date
  • Tags Tags
    Javascript
AI Thread Summary
Recommendations for advanced JavaScript courseware suitable for self-study emphasize the need for resources that cater to individuals with prior programming experience, particularly those familiar with object-oriented languages and basic JavaScript. While many existing courses are too elementary, it is suggested that practical engagement, such as coding projects, can be more beneficial than traditional courses. Key resources mentioned include "Eloquent JavaScript," a free ebook praised for its clarity, and "JavaScript: The Definitive Guide" for in-depth reference, despite its theoretical focus. Additionally, leveraging platforms like StackOverflow for community-driven insights and sites like creativejs.com and jsfiddle.net for practical experimentation is recommended. Overall, the discussion highlights the importance of hands-on practice and targeted resources for advancing JavaScript skills.
Ryoko
Messages
141
Reaction score
10
I'm looking for recommendations for javascript courseware suitable for self-study. Most of what I've found assumes no programming experience and is too basic and not really usable for building skills to a professional level. I'm already proficient in OO languages such as C++ as well as being familiar with HTML/CSS. I can do basic coding in JS, but I need more advanced training. I've seen some subscription courseware offering video courses, but I'm not sure of the quality or the thoroughness of the material. Suggestions?
 
Technology news on Phys.org
Honestly, if you're already straight with OO, familiar with HTML/CSS, and can actually do basic JS (as in, JS, not jQuery) then it's just a matter of learning the syntax/subtleties and putting the time in. As you've already sort of hinted, courses would bore you as you already have an understanding. Just get your hands dirty.

Regardless, for structured learning, here's a great starter list of resources: http://stackoverflow.com/questions/11246/best-resources-to-learn-javascript

Next, I would go though StackOverflow's most voted answers in the JavaScript tag to learn things you wouldn't even think to ask.

Eloquent JavaScript is a free ebook that's pretty eloquent. For a desktop reference, and a truly deep understanding of JS, grab a copy of the beastly Definitive Guide

Finally bookmark http://creativejs.com/ and http://jsfiddle.net/ , the former to see what people are doing at the very edge of JavaScript's limit and the latter to quickly test out examples without having to set up a test/sandbox environment.
 
Last edited by a moderator:
Thanks. I'll take a look at the links tomorrow when I get a chance.

I've read the O'Really Javascript: The Definitive Guide book ... all 1000 pages. Pretty dry reading. Nice reference, but it doesn't really offer a lot practical use guidance. Just lots of theory.
 
Dear Peeps I have posted a few questions about programing on this sectio of the PF forum. I want to ask you veterans how you folks learn program in assembly and about computer architecture for the x86 family. In addition to finish learning C, I am also reading the book From bits to Gates to C and Beyond. In the book, it uses the mini LC3 assembly language. I also have books on assembly programming and computer architecture. The few famous ones i have are Computer Organization and...
I had a Microsoft Technical interview this past Friday, the question I was asked was this : How do you find the middle value for a dataset that is too big to fit in RAM? I was not able to figure this out during the interview, but I have been look in this all weekend and I read something online that said it can be done at O(N) using something called the counting sort histogram algorithm ( I did not learn that in my advanced data structures and algorithms class). I have watched some youtube...
Back
Top