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鈥檒l 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鈥檝e 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