Aryan Kesharwaniaryankesharwani.hashnode.dev·May 6, 2024Mastering the Differences Between let and var in JavaScriptWe all have a confusion about the difference between two javascript main keywords "let" and "var". Let me clear this to you in the most easy way. So, "let" is something which has his control to himself while "var" is like giving his control to everyo...JavaScript
Isna Yousufisnayousuf.hashnode.dev·Dec 28, 2023A closer look at Let, Var and Const in JavascriptIn recent years, the release of ES6 (ECMAScript 6) has changed the way we write JavaScript code, introducing three new keywords: let, var, and const. These new keywords allow us to declare variables more efficiently, and it can be confusing to unders...when to use var and let