VGVarun Guptainvarungupta.hashnode.dev·Jan 12, 2024 · 4 min readPromisesWhat are promises? Promises in javascript represents the eventual completion (or failure) of an asynchronous operation & its resulting value. Explanation In real life, There are a lot of things which require a lot of time which you usually outsource ...00
VGVarun Guptainvarungupta.hashnode.dev·Mar 8, 2023 · 3 min readArray methods in JSFirstly, We'll discuss what are arrays in JS. after that, the methods provided by JS. What are Arrays? An array in JS is a single variable that can store multiple values in it. syntax: declaration variable_name = [item1, item2, item3, .....so on]; T...00
VGVarun Guptainvarungupta.hashnode.dev·Feb 23, 2023 · 3 min readEvents in JSJavascript interaction with HTML is handled through events that occur when the user or the browser manipulates a page. Anything whether it is clicking a mouse button, pressing any keyboard button or when the page loads, which puts any changes in the ...00
VGVarun Guptainvarungupta.hashnode.dev·Sep 11, 2022 · 5 min readJavaScript Interview Cheat-sheetIn this article, We'll be quickly going through the concepts (mentioned below). So, you can take a quick peek before an interview or anything. Scope of a variable in JS. Why JavaScript is a single threaded language? Call Stack in JavaScript. Hoistin...00
VGVarun Guptainvarungupta.hashnode.dev·Aug 3, 2022 · 2 min readGit on the go......What is Git? Git is a version control system which is used to track changes in the computer files. It's mainly used for the source code management (SCM). What is version control system? Version control, also known as source control, is the practice o...00