RKRupesh Kumarinrupeshgadariya.hashnode.dev00This and Closures in JavaScriptMar 13 · 9 min read · What this means in JavaScript In JavaScript, this refers to the object that is currently calling the function. What this points to changes depending on where and how the function is called. const persJoin discussion
RKRupesh Kumarinrupeshgadariya.hashnode.dev00Function Mar 13 · 7 min read · What is Function ? Functions are named, reusable blocks of code or mathematical rules that take specific inputs, perform operations, and return a corresponding output. They are essential for breaking Join discussion
RKRupesh Kumarinrupeshgadariya.hashnode.dev00ArrayMar 12 · 11 min read · What are Arrays in JavaScript ? An array in JavaScript is a special variable that can store multiple values in a single variable. Instead of creating many separate variables, you can keep related dataJoin discussion
RKRupesh Kumarinrupeshgadariya.hashnode.dev00Objects in JavaScriptMar 11 · 6 min read · What is Objects in javaScript ? In JavaScript, objects are collections of key-value pairs. They allow you to store multiple related pieces of data together under a single variable. Each key (also callJoin discussion
RKRupesh Kumarinrupeshgadariya.hashnode.dev00Control Flow in JavaScriptMar 10 · 5 min read · What control flow means in programming Control Flow in programming refers to the order in which individual statements, instructions, or blocks of code are executed or evaluated in a program. It determJoin discussion