MVMaheshwari Vasavainhow-javascript-code-executed.hashnode.dev·Feb 12, 2024 · 3 min readWhat are web browser APIs in Javascript?API stands for Application Programming Interface. In the context of web browsers, APIs provide a way for developers to interact with various features and functionalities of a web browser programmatically. They essentially act as a bridge between web ...00
MVMaheshwari Vasavainhow-javascript-code-executed.hashnode.dev·Feb 12, 2024 · 2 min readCallback function in javascriptA callback function is a function that's passed as an argument to another function and is executed after the completion of some task or event. Callbacks allow us to execute code asynchronously, meaning we can continue to run other tasks while waiting...00
MVMaheshwari Vasavainhow-javascript-code-executed.hashnode.dev·Feb 12, 2024 · 2 min readWhat is Event Loop?The event loop is a key concept in JavaScript's concurrency model, responsible for handling asynchronous operations. It's what allows JavaScript to perform non-blocking I/O operations despite being single-threaded. The event loop constantly checks i...00
MVMaheshwari Vasavainhow-javascript-code-executed.hashnode.dev·Feb 12, 2024 · 3 min readWays to make Javascript code AsynchronousBefore going deep into the core of the JavaScript runtime and how async code tasks are run behind the scenes, let’s get the basics clear. JavaScript is a single-threaded language. This means it has only one call stack and one memory heap. Hence, it c...00
MVMaheshwari Vasavainhow-javascript-code-executed.hashnode.dev·Feb 12, 2024 · 3 min readHow Javascript Code ExecutedJavaScript has become a staple for web development, powering the interactive features we see on modern websites. But have you ever wondered how JavaScript code actually gets executed? In this blog post, we will explore the intricacies of code executi...00