News

JavaScript’s async and await functions make for readable and maintainable asynchronous code. Just watch out for their downsides.
I keep hitting a code pattern in javascript that I'm having trouble writing in a readable, non-ugly pattern. (FWIW, I'm just transitioning back to javascript after being away. I might be missing a ...
Callbacks work fine for handling asynchronous code in JavaScript, but promises and the async and await keywords are cleaner and more flexible.