AGAayush Guptainaayush895.hashnode.dev·Feb 12, 2024 · 3 min readUnderstanding the Fundamentals of Web Development: Event Loop, Callbacks, and Web Browser APIsIntroduction: Web development is a fascinating field that encompasses a diverse range of technologies and concepts. In this blog post, we'll delve into three fundamental concepts that are crucial for understanding how web applications work: the event...00
AGAayush Guptainaayush895.hashnode.dev·Feb 12, 2024 · 3 min readways to make code asynchronousIn javascript making the code asynchronous is done using promises, async/await and using the methods explicitly made which support asynchronous behaviour. Promises: Promises provide a cleaner way to handle asynchronous operations and their results co...00
AGAayush Guptainaayush895.hashnode.dev·Feb 12, 2024 · 3 min readhow js code gets executedhow javascript is different than others JavaScript's execution differs from other languages due to its support for asynchronous execution of code, event-driven architecture, dynamic typing, function scope, and closures. These features enable flexible...00