WordCamp Miami 2017 live streamed all of their sessions. Many readers may be interested in the JavaScript learning track. There are over 6 hours of discussions.
You can skip the first 31 minutes because it involves setting up the screens and audio. Speakers include Josh Pollock, Nizar Iglesias, and Zac Gordon and many others who came traveled from all over the world to attend the Miami WordCamp.
JavaScript is now 28% of WordPress code and it’s important to learn the language. In fact, Matt Mullenweg stated all WordPress developers should “Learn JavaScript, Deeply.”
The first thing I learned was the for of loop for arrays.
let operable = 1, 2, 3
for (let value of iterable) {
value +=1;
console.log(value);
}
// 2
// 3
// 4
After finishing the videos, you might be interested in Zac Gordon’s site: https://javascriptforwp.com/ another fantastic site to learn JavaScript is http://eloquentjavascript.net/.