atomicjuggernaut.hashnode.dev2.3 JavaScript Interview Preparation: Search methods in ArraySearching for elements in an array is a common task in programming. JavaScript provides various methods for performing a search operation in an array. In this article, we will cover the most commonly used search methods: indexOf, lastIndexOf, include...Apr 26, 2023·4 min read
atomicjuggernaut.hashnode.dev2.2 JavaScript Interview Preparation: Array ManipulationAs a beginner in JavaScript, it is essential to learn how to manipulate arrays, which are one of the most commonly used data structures in JavaScript. Manipulating arrays involves adding, removing, inserting, or replacing elements in an array. In thi...Apr 25, 2023·3 min read
atomicjuggernaut.hashnode.dev2.1 JavaScript Interview Preparation: ArraysIf you are new to JavaScript, one of the essential concepts to grasp is arrays. An array is a data structure used to store a collection of values or elements under a single variable name. It is an ordered list of values that can be accessed and manip...Apr 24, 2023·3 min read
atomicjuggernaut.hashnode.devEp. 4 How functions work in JS ❤️ & Variable Environment - HOISTING | Namaste JavaScriptIf you're new to JavaScript, you may have heard the term "hoisting" thrown around but not fully understood what it means. In this article, we'll dive into the concept of hoisting and how it affects the way your code is executed. What is Hoisting in J...Apr 23, 2023·3 min read
atomicjuggernaut.hashnode.devJavaScript Interview Question: 12. Memory Management & Garbage CollectionMemory management and garbage collection are essential concepts in JavaScript. When a variable, object, or function is declared, it is stored somewhere in the memory. There may be multiple locations to hold vast values, but one box is used as a locat...Apr 22, 2023·4 min read