javascript-resources
Last updated
Was this helpful?
Last updated
Was this helpful?
While this list is primarily focused on learning React and Redux, and generally assumes that you understand the older Javascript ES5 standard, there's many great resources out there for learning Javascript. This page points to some similar resource lists that are focused on Javascript, as well as some additional useful articles and resources.
Mozilla Developer Network: Javascript
Mozilla maintains a fantastic set of developer resources for Web technologies, including a comprehensive reference to the Javascript language and a number of associated tutorials. Their "reintroduction to Javascript" article is a great overview of what the language looks like.
Eric Elliott's Javascript Resource Lists Eric Elliott is a strong proponent of Javascript, has written numerous articles about learning and understanding Javascript, and assembled some very useful lists of numerous Javascript resources. (Note that he is very strongly opinionated in his own articles, particularly about certain code patterns that he feels everyone should follow, but overall his advice and information is pretty solid.)
Wes Bos's Javascript Resource List Speaker and teacher Wes Bos gives links to a number of resources for learning Javascript
Learning Javascript and the Danger of Spreading Yourself Too Thin
Tips on how to approach learning Javascript, and some additional resources.
Eloquent Javascript A full online book teaching Javascript from the ground up. Very recommended.
You Don't Know Javascript An online book series intended to teach all aspects of Javascript, including the "tougher" parts.
A Roundup of Online Code Playgrounds
An overview and comparison of various online Javascript live code editing tools.
Mozilla Javascript Reference: the this
keyword
MDN's usual excellent documentation, explaining how this
works in Javascript
Gentle Explanation of this
keyword in Javascript
Another long and in-depth explanation, plus some good discussion in the Reddit comments.
The Inner Workings of Javascript's this
keyword
A two-part article on the ins and outs of this
.
Let's Settle this
, Part One
Another look at this
, with a number of examples and explanations