This community-built FAQ covers the “Variables” exercise from the lesson "Variables ".
Paths and Courses
This exercise can be found in the following Codecademy content:
Web Development
Introduction To JavaScript
FAQs on the exercise Variables
There are currently no frequently asked questions associated with this exercise – that’s where you come in! You can contribute to this section by offering your own questions, answers, or clarifications on this exercise. Ask or answer a question by clicking reply () below.
If you’ve had an “aha” moment about the concepts, formatting, syntax, or anything else with this exercise, consider sharing those insights! Teaching others and answering their questions is one of the best ways to learn and stay sharp.
Join the Discussion. Help a fellow learner on their journey.
Ask or answer a question about this exercise by clicking reply () below!
Agree with a comment or answer? Like () to up-vote the contribution!
Need broader help or resources? Head here.
Looking for motivation to keep learning? Join our wider discussions.
Learn more about how to use this guide.
Found a bug? Report it!
Have a question about your account or billing? Reach out to our customer support team!
None of the above? Find out where to ask other questions here!
the Variables lesson mentioned that the value of variables is stored in “memory” - where exactly is the info stored tho? on the users computer? the server hosting the program/website?
1 Like
The memory is part of a computer, specifically the computer that the program is running on. There are many different parts of the memory and names for these parts (main memory, RAM, the stack, the heap, registers, chaches, etc)
If you are running a program on your computer, it is stored there. If there is another server running the program, the variables could be stored on that server and the output is sent to you
4 Likes
What’s the difference between variables and objects?
1 Like
There is a mistake, the boxes shown on page 1 do not show the names, but these are shown in the follow along video though.
Variable
- A variable is a container or a named storage location in a program that holds a value.
- Variables are declared using keywords like
var
, let
, or const
in JavaScript.
As such:
let x = 5;
console.log(x) // 5
The value stored in a variable can be changed or reassigned during the execution of the program.
x = 6;
console.log(x) // 6
Objects
- An object is a complex data type that allows you to store and organize data in key-value pairs.
- Objects are declared using curly braces
{}
in JavaScript, and key-value pairs define their properties.
- Example:
let person = {
name: 'John',
age: 30,
gender: 'male'
};
1 Like