Generators! I've put together a "brief deep dive" on the subject, showcasing for instance how to build a simple casino slot machine game, generate emojis, do controlled polling, handle async pagination and infinite scroll, etc.
They can provide solutions…https://t.co/xiDopEGpQB
Here's an article I wrote on the topic of functional programming in JavaScript; How you can build your own Redux and a Web App on top using FP concepts and unit testing, step by step: https://t.co/xbWJSbM9YU
I tried out hyperHTML and was very pleased with the results. A 5kb best in class performing declarative frontend alternative to virtual dom and jsx, being 100% standards compliant. The simple result? Per's personal photo shop: https://t.co/B4ALWhg1zX
Visual Studio Code can now convert your long chains of Promise.then()'s into async/await! 🎊 Works very well in both JavaScript and TypeScript files. .catch() is also correctly converted to try/catch ✅
Henrik Kniberg's skateboard that turns into a car is a popular depiction of an agile process. But it seems to be commonly misinterpreted . So I decided to make my own interpretation: https://t.co/VtrVyr6snE
Wrap your console.log arguments in an object literal to print the variable name along with its value.
console.log(isLoggedIn)
console.log({ isLoggedIn })
Still one of my favorite tips from @wesbos. So simple but effective 💪