YSyeggena Sandeepkumar Reddyinsandeepkumarreddy.hashnode.dev·Feb 12, 2024 · 2 min readWhat are web browser APIs?Web Browser APIs are functionalities provided by browsers to interact with the browser environment. API stands for Application Programming Interface. A Web API is an application programming interface for the Web. A Browser API can extend the functio...00
YSyeggena Sandeepkumar Reddyinsandeepkumarreddy.hashnode.dev·Feb 12, 2024 · 2 min readWhat is callback?callBack : An event handler is a particular type of callback, A callback is a just function, that passed into another function,with the expatiation that the call Back will call at the particular time. We just saw , callBacks are used to be the mai...00
YSyeggena Sandeepkumar Reddyinsandeepkumarreddy.hashnode.dev·Feb 12, 2024 · 2 min readwhat is Event loop ?:event loop:The event loop is a crucial concept in JavaScript's concurrency model. It manages the execution of multiple tasks, ensuring non-blocking behavior by continuously checking the call stack for tasks to execute, while also handling asynchronou...00
YSyeggena Sandeepkumar Reddyinsandeepkumarreddy.hashnode.dev·Feb 12, 2024 · 2 min readWhat are the ways to make the code Asynchronous?Ways to Make Code Asynchronous in JavaScript Asynchronous programming is essential in JavaScript for handling time-consuming tasks like fetching data from servers, reading files, or executing long-running computations without blocking the main thread...00
YSyeggena Sandeepkumar Reddyinsandeepkumarreddy.hashnode.dev·Feb 12, 2024 · 2 min readUnderstanding How JavaScript Code Gets Executed ?Introduction: JavaScript is a versatile and powerful programming language that is primarily used to enhance interactivity and functionality on web pages. But have you ever wondered how JavaScript code actually gets executed? In this post, we'll dive ...00