JavaScript Weekend List #14

This has been a bit crazy for me personally. I joined the “new” team, excited to build some great stuff with them. Read more

Similar

Web Workers JavaScript API

Web Workers are a simple means for web content to run scripts in background threads. The worker thread can perform tasks without interfering with the user interface. In addition, they can perform I/O using XMLHttpRequest (although the responseXML and chan... (more…)

Read more »

An Introduction to JavaScript Callbacks

What is a Callback function? 🤔 We know that in JavaScript, we can pass functions as an argument into another function. These functions which take other function as an argument are known as Higher-Order functions. And the functions which are passed a... (more…)

Read more »