I learned JavaScript in the days of of jQuery and W3Schools, and having taken a break from JavaScript since ES6 came out I feel lost whenever I see a snippet of modern JS these days. Does anyone have a suggestion for a good resource made for transitioning from ancient to modern JS? Thanks in advance!
This might be grossly simplifying things: but if you're already familiar with "old JS" (since you mentioned jQuery), to read and write ES6 code in most modern JS projects, you really only need to get used to a handful of concepts: 1) lambda functions and the fat arrow syntax and what it does for scope, which is used extensively in modern JS codebases; 2) Promises/promise chains and async/awaits; 3) certain widely used new keywords like const and let, how requires and exports work in node.
This doesn't include frameworks like React which is its own entire separate category of things. But at least you'll be comfortable with ES6 and node8+ at this point. If you're more interested in frontend modern JS unfortunately you'll also probably have to learn about babel and webpack and the like.
This doesn't include frameworks like React which is its own entire separate category of things. But at least you'll be comfortable with ES6 and node8+ at this point. If you're more interested in frontend modern JS unfortunately you'll also probably have to learn about babel and webpack and the like.