AKAbhishek Kumarinspy.hashnode.dev·Apr 15, 2024 · 4 min readOverview on ReactReact is a free and open-source front-end JavaScript library for building User Interfaces. It is known for its speed, scalability, and simplicity. It is also known for its component-based architecture, which makes it easy to create reusable and maint...00
AKAbhishek Kumarinspy.hashnode.dev·Sep 23, 2022 · 5 min readJavascript Interview CheatsheetIn this article, we are going to discuss some important topics of js which are asked during the interview. Scope Call stack Is Javascript single-threaded? Hoisting Let's Begin:- Scope Scope in JavaScript defines the accessibility of variables, obje...00
AKAbhishek Kumarinspy.hashnode.dev·Sep 19, 2022 · 2 min readHoisting in JavascriptWhat is Hoisting in JS? Hoisting in Javascript is a behavior in which a function or variable can be used before declaration. It is the default behavior of javascript to move declarations to the top. Variable Hoisting Regarding variables and constants...00
AKAbhishek Kumarinspy.hashnode.dev·Sep 14, 2022 · 2 min readVariables in JSWhat are Variables? Like many other programming languages, JavaScript has variables. Variables can be thought of as named containers. You can place data into these containers and then refer to the data simply by calling the container. Javascript incl...01S
AKAbhishek Kumarinspy.hashnode.dev·Sep 11, 2022 · 3 min readArray 101 in JavaScriptWhat is an Array? An Array is an object that can store multiple values at once. All these elements need to be of the same data type, such as an integer or string, or boolean. How to create an Array? Syntax: const array_name = [item1, item2, ...]; E...00