AGAbhay Guptainbeginnerabhay.hashnode.dev·Mar 3, 2023 · 12 min readObject in JavaScriptWhat is an Object? An object is a non-primitive data type in JavaScript, We use objects to store a collection of data irrespective of their data type (number, string, boolean etc). Each value stored in an object has a key associated with it so we can...01V
AGAbhay Guptainbeginnerabhay.hashnode.dev·Feb 24, 2023 · 10 min readDifferent Loops in JavaScriptOverview: Loops are very useful in programming, whenever we want to perform any task and we want to repeat that task a particular number of times. For instance, If we want to print orange 6 times : console.log('orange'); //Output: orange console.log(...03VKS
AGAbhay Guptainbeginnerabhay.hashnode.dev·Feb 18, 2023 · 10 min readNullish Coalescing(??) vs OR (||)To get more clarity on how nullish coalescing (??) works, it would be wiser to compare it with the OR operator (||) and understand. Before we head towards the blog's main topic, I want to brief you about Falsy values in javascript. Falsy & Truthy val...00D