vishal mauryamauryavishal.hashnode.dev·Dec 9, 2024JavaScript Interview Questions : Part 2Welcome back to the series on 500 JavaScript Interview Questions! In the first part, we explored key concepts that interviewers frequently ask about, such as IIFE, Hoisting, Currying, and more. If you haven’t checked it out yet, feel free to catch up...DiscussJavaScript Interview QuestionsJavaScript
vishal mauryamauryavishal.hashnode.dev·Dec 4, 2024JavaScript Interview Questions : Part 1In the ever-evolving world of web development, JavaScript remains a cornerstone technology, powering dynamic and interactive web applications. Whether you're a seasoned developer or just starting your journey, preparing for a JavaScript interview can...DiscussJavaScript Interview QuestionsJavaScript
Saifabeginner.hashnode.dev·Oct 13, 2024Deep dive Throttling in React Native (JavaScript)Throttling is a technique used to limit the number of times a function can be called over a certain period of time. Unlike debouncing, which delays function execution until after a quiet period, throttling guarantees that a function is called at a re...DiscussJavaScript
Saifabeginner.hashnode.dev·Oct 13, 2024Deep Dive Debouncing in React Native (Javascript)Debouncing is a programming practice used to ensure that time-consuming tasks do not fire so often, making them more efficient. It limits the rate at which a function gets called. Debouncing enforces that a function not be called again until a certai...DiscussJavaScript
Abdul Rafay Malik abdulrafaymalik.hashnode.dev·Aug 23, 2024Mastering useState: Top 10 Interview Questions & AnswersIf you're a React developer, you're likely familiar with useState, one of the most fundamental hooks in React. But when it comes to interviews, it's essential to not only know how to use useState but also to understand its intricacies. In this blog, ...Discuss·1 like·49 readshooks
Aparna Udayakumaraparna-u.hashnode.dev·Aug 15, 2024How JavaScript Actually Works: The Event LoopIn JavaScript, the event loop is the mechanism that processes and responds to events. It's responsible for executing code, collecting and processing events, and executing queued sub-tasks. To grasp this concept fully, we need to delve into several in...Discuss·1 like·33 readsJavaScript
Zeeshan Safdarzeeshansafdar.hashnode.dev·Aug 15, 2024JavaScript Interview Questions: Mutability vs. ImmutabilityToday I want to share some interview questions that were asked to me related to immutable and mutability concepts in javascript. If you're prepping for a JavaScript interview, this might be helpful! 💡 1 - Question: What is mutable and immutable in J...Discuss·2 likesJavaScript
Aparna Udayakumaraparna-u.hashnode.dev·Aug 14, 2024Understanding Hoisting: A Deep Dive into JavaScriptWhat is Hoisting? Hoisting is a JavaScript mechanism where variable and function declarations are moved to the top of their 1 scope before code execution. 2 However, this doesn't mean the values are also moved; only the declarations are hoisted. ...Discuss·10 likesJavaScript
Suraj Choudharysurajcode.hashnode.dev·Jun 28, 2024Top JavaScript Interview Questions You Should Know1. What is the Execution Context? When the JavaScript engine scans a script file, it makes an environment called the Execution Context that handles the entire transformation and execution of the code. Every Thing in JavaScript happens inside the "e...DiscussJavaScript
Aditya Gadhaveadityag7678.hashnode.dev·Jun 24, 2024Important Javascript Interview Questions And AnswerJavaScript Interview Questions : JavaScript interview questions and answers for provides a list of top 20 interview questions. The frequently asked JavaScript interview questions with answers for beginners and professionals are given below. 1) What i...Discuss·2 likesHTML5