Hi,
During the last few days, a few people asked about how to re-learn javascript, I wanted to share a few resources I’ve found useful:
A great starting point to catch up on newer version of javascripts (that we of course support) is https://developer.mozilla.org/en-US/docs/Web/JavaScript/A_re-introduction_to_JavaScript It has quite a few code examples and background on things.
ES6 syntax is “new” but worth highlighting a few parts:
Arrow functions
Classes
Template literals
let
and const
For learning react - I found the react toutrial useful to get started.
lastly, you might have have heard we recently merged redux - I found the following free online courses (each episode is about 2-5 minutes) really worth the time: https://egghead.io/courses/getting-started-with-redux
On the day to day, I also started to use prettier which I see as a anti bikeshedding tool for syntax, whitespaces etc.
another nice package worth mentioning is lebab (opposite of babel) which knows (sometimes) how to convert “old” JavaScript to newer / modern syntax.
I personally also like using Jest for testing which we now also use in the SUI.
comments, suggestions or questions are very welcomed