HGHarsh Guptainharsh7562.hashnode.dev·May 22 · 4 min readScopes and Closures in PythonWhen learning Python, one of the most important concepts to understand is scope. Scope decides: where a variable can be accessed how Python searches for variables and how nested functions remember 00
SSSagar Sangleinsagarsangle--understanding-variables-in-javascript.hashnode.dev·Mar 15 · 11 min readUnderstanding Variables and Data Types in JavaScriptWhen learning JavaScript, one of the first concepts you'll encounter is variables and data types. These are the foundation of programming because they allow us to store, manage, and manipulate data in10
SVShubham Vishwakarmaininfoaboutdatatype.hashnode.dev·Mar 15 · 5 min readUnderstanding Variables and Data Types in JavaScriptVariables Variables are nothing but a small container which is used to store the data . In JavaScript, data is stored in variables using reserved keywords. There are three keywords used to declare v00
LGLalit Gujarinjavascriptcontent.hashnode.dev·Mar 14 · 7 min readVariables & Data TypesBefore you can write any real JavaScript, you need to understand how programs store and remember information. This chapter teaches you exactly that. What are Variables? A program needs to remember thi00
SCShravan Chaudhariinshrvn.hashnode.dev·Mar 13 · 6 min readVariables and Data Types in JavaScriptEvery program you write needs to store information. A user's name, a price, a list of items in a cart, all of that has to live somewhere. In JavaScript, variables are how you hold onto that informatio00
RSRitu Soodinjs-basics-series.hashnode.dev·Mar 13 · 9 min readUnderstanding Variables and Data Types in JavaScript If you’re starting JavaScript, one of the first things you’ll hear is: “Declare a variable” “Store data” “Use the correct data type” “Use let instead of var” “Why is const not changing?” And if00
PKPRINCE KUMARinprincekumar-engineer.hashnode.dev·Mar 11 · 8 min readUnderstanding Variables and Data Types in JavaScriptImagine writing a program where the computer cannot remember anything. A login form forgets the username. A calculator forgets the numbers you entered. A shopping cart forgets the products you added. 00
RCRohit Chorneleinblog.rohitchornele.online·Mar 11 · 9 min readUnderstanding Variables and Data Types in JavaScriptVariables are the first step in any programming language. Variables are fundamental because they allow us to store the information in our program and use those informations letter in the code. This ar00
SMSwastik Majhiinjavascript-fundamentals-made-easy.hashnode.dev·Mar 11 · 7 min readVariables and Data Types in JavaScriptIntroduction Computers mostly do two things, one they perform some computation like adding two numbers, running video games, running AI models and two they store some data like storing messages, pictu00
SSSoumyaditya Sinhainsoumyaditya-blog.hashnode.dev·Mar 8 · 9 min readUnderstanding Variables and Data Types in JavaScriptWhen we write programs in any programming language, not just JavaScript, we need data. Without data or information, a program cannot do anything useful. To work with this data, we need a way to store 00