Event Loop in JavaScriptJavaScript is a single-threaded programming language, this means we can do only one thing at a time. Still, we can make scripts run asynchronously. It is possible because of the runtime model based on the event loop in JavaScript. The event loop is r...Jul 9, 2022·2 min read·35
Understanding Data types in JavaScriptData types specify what kind of data can we store and if it can be manipulated later. Data types in JavaScript look very simple. In this post, we’ll look at all the different data types that exist in JavaScript according to EcmaScript standards. Data...Jul 4, 2022·4 min read·115
Why do we need JavaScript libraries (or Framework)You’ve likely heard about frameworks and libraries around JavaScript. The ecosystem is evolving at speed where we are facing JavaScript fatigue. The overwhelming amount of tooling it requires to set up a project and get it running is quite high. In t...Jun 29, 2022·3 min read·91