Picture of the authorDevGrads

Storing the information you need — Variables

After reading the last couple of articles you should now know what JavaScript is, what it can do for you, how you use it alongside other web technologies, and what its main features look like from a high level. In this article, we will get down to the real basics, looking at how to work with the most basic building blocks of JavaScript — Variables.

What is a variable?

A variable is a container for a value, like a number we might use in a sum, or a string that we might use as part of a sentence.

Variable example

Html

<button id="button_A">Press me</button>
<h3 id="heading_A"></h3>

JavaScript

const buttonA = document.querySelector("#button_A");
  const headingA = document.querySelector("#heading_A"); 
  buttonA.onclick = () => {
  const name = prompt("What is your name?");  
  alert("Hello" +name +", nice to see you!");
  headingA.textContent = `welcome${name}`;
  };

Declaring a variable

To use a variable, you've first got to create it — more accurately, we call this declaring the variable. To do this, we type the keyword let followed by the name you want to call your variable:

JavaScript

let myName;
let myAge;

Here we're creating two variables called myName and myAge. Try typing these lines into your web browser's console. After that, try creating a variable (or two) with your own name choices.

Initializing a variable

Once you've declared a variable, you can initialize it with a value. You do this by typing the variable name, followed by an equals sign (=), followed by the value you want to give it. For example:

myName = "Chris";
myAge = 37;
const a  = 10
  const b = 20

Try going back to the console now and typing in these lines. You should see the value you've assigned to the variable returned in the console to confirm it, in each case. Again, you can return your variable values by typing their name into the console — try these again:

myName;
myAge;
You can declare and initialize a variable at the same time, like this:
let myDog = "Rover";

This is probably what you'll do most of the time, as it is quicker than doing the two actions on two separate lines.

Updating a variable

Once a variable has been initialized with a value, you can change (or update) that value by giving it a different value. Try entering the following lines into your console:

myName = "Bob";
myAge = 40;

An aside on variable naming rules

  • You shouldn't use other characters because they may cause errors or be hard to understand for an international audience.
  • Don't use underscores at the start of variable names — this is used in certain JavaScript constructs to mean specific things, so may get confusing.
  • Don't use numbers at the start of variables. This isn't allowed and causes an error.
  • A safe convention to stick to is lower camel case, where you stick together multiple words, using lower case for the whole first word and then capitalize subsequent words. We've been using this for our variable names in the article so far.
  • Make variable names intuitive, so they describe the data they contain. Don't just use single letters/numbers, or big long phrases.
  • Variables are case sensitive — so myage is a different variable from myAge.
  • One last point: you also need to avoid using JavaScript reserved words as your variable names — by this, we mean the words that make up the actual syntax of JavaScript! So, you can't use words like var, function, let, and for as variable names. Browsers recognize them as different code items, and so you'll get errors.
  • Good name example

    age
    myAge
    init
    initialColor
    finalOutputValue
    audio1
    audio2
    This is good because the names are descriptive and easy to understand.

    Bad name example

    1
    a
    _12
    myage
    MYAGE
    var
    Document
    skjfndskjfnbdskjfb
    thisisareallylongvariablenameman

    Variable types

    There are a few different types of data we can store in variables. In this section we'll describe these in brief, then in future articles, you'll learn about them in more detail.

    Numbers

    You can store numbers in variables, either whole numbers like 30 (also called integers) or decimal numbers like 2.456 (also called floats or floating point numbers). You don't need to declare variable types in JavaScript, unlike some other programming languages. When you give a variable a number value, you don't include quotes:

    let myAge = 20

    Strings

    Strings are pieces of text. You can use single or double quotes to define them:

    let dolphinGoodbye = "So long and thanks for all the fish";
    

    Booleans

    Booleans are true/false values. They can be used to store values like yes/no, on/off, true/false, etc.:

    let iAmAlive = true;

    Arrays

    An array is a single object that contains multiple values enclosed in square brackets and separated by commas:

    let myNameArray = ["Chris", "Bob", "Jim"];
    let myNumberArray = [10, 15, 40];
    

    Accessing array items

    Array items are accessed using square brackets, with the index number of the item you want to access inside:

    myNameArray[0]; // should return 'Chris'
    myNumberArray[2]; // should return 40

    Try typing these lines into your console, and see what you get back. You should see the values you expect.

    Objects

    In programming, an object is a structure of code that models a real-life object. You can have a simple object that represents a box and contains information about its width, length, and height, or you could have an object that represents a person, and contains data about their name, height, weight, what language they speak, how to say hello to them, and more.

    Try entering the following line into your console:

    let dog = { name: "Spot", breed: "Dalmatian" };
    

    To retrieve the information stored in the object, you can use the following syntax:

    dog.name; // Spot
    dog["breed"] // Dalmatian
    

    Dynamic typing

    JavaScript is a "dynamically typed language", which means that, unlike some other languages, you don't need to specify what data type a variable will contain (numbers, strings, arrays, etc.).

    For example, if you declare a variable and give it a value enclosed in quotes, the browser treats the variable as a string:

    let myString = "Hello";
    

    When to use const and when to use let

  • If you can't do as much with const as you can with let, why would you prefer to use it rather than let? In fact const is very useful. If you use const to name a value, it tells anyone looking at your code that this name will never be assigned to a different value. Any time they see this name, they will know what it refers to.
  • In this course, we adopt the following principle about when to use let and when to use const:
  • Use const when you can, and use let when you have to.
  • This means that if you can initialize a variable when you declare it, and don't need to reassign it later, make it a constant.