Skip to content

Simple Assignment Operator

Definition

Making variables and putting data into them.

What does data look like?

Numbers

Here's what the number 7 looks like in the computer as a base 2 number:

00000000000000000000000000000111

That's 32 bits in a row, which is maybe a little overwhelming to look at. So, we break up the bits into groups of 8 that we call bytes. (You've probably heard that term, like in a 500GB hard drive. That's 500 billion bytes!)

00000000 00000000 00000000 00000111

For the sake of discussion, we'll not worry about the first 3 bytes since they are all zeros. We'll just look at the last byte.

00000111

Now we'll blow it up and look at what it means if we are working with number data. The computer only understands base 2 arithmetic. The rightmost bit is the one's position, the next one to the left is the two's position, next is the four's, etc.

byte02

Here's what 10 looks like:
00001010
Here's 255:
11111111
And here's 682 but we had to add back the next byte:
00000010 10101010

Characters

What about letters? Here's what the letter A is in the computer:

01000001

Huh? That looks like a number! Yep, that's what everything is in the computer. That's also the number 65.
How does the computer know that it's an A and not 65?
Because we tell it that it's an A. That's what Assignment means.


Using the Simple Assignment Operator

Definition

Assignment is setting a variable to a value and telling the computer the value's type.

In JavaScript, we do this by simply assigning a value to a variable. JavaScript figures out what type based on how you write the value:

  • Numbers: 45, 123.99
  • Strings: "this is a string", "Here's another", "12.99"
  • A number is declared by not using quotes.
  • A string is declared with the quotes, even if the value within the quotes is a set of digits 0-9 so that it superficially looks like a number.

There are several ways to do assignment in JavaScript.
The simplest is the Simple Assignment Operator.

assignment

Simple Assignment while declaring the variable

This is valid syntax for JavaScript but we want you to not do this. It's considered bad coding form.

1
2
3
4
5
6
7
8
// Simple Assignment while declaring the variable

let firstName = "Fred";
let income = 40000;

document.write("First Name: " + firstName);
document.write("<br />");
document.write("Annual Income: " + income);


Simple Assignment after the variable has been declared.

This can happen anywhere in your code after the declaration. This is correct form that conforms to our coding standards.

1
2
3
4
5
6
// Simple Assignment after declaring the variable
let petName;

petName = "Fido";

document.write("Pet Name: " + petName);


Simple Assignment with Math.
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
// Simple Assignment with Math
let total;
let countOne;
let countTwo;

countOne = 500;
countTwo = 345;

total = countOne * countOne;

document.write("The total is: " + total);


Simple Assignment by replacing the value of a variable.
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
// Simple Assignment with replacement

let address;

address = "123 Some St.";

document.write("Address: " + address);
document.write("<br />");

address = "456 Another St.";

document.write("New Address: " + address);


Simple Assignment to a new type.

Recall that JavaScript variables are officially "untyped."  This means that variables can initially hold any type of data, and then later on in the program, you could change their content to a different type of data!

Many other languages, like Java and C#, are "strongly typed" languages, and will not permit this kind of loosey-goosey work. Their variables have to be declared as being a certain type when you set them up, and you can't change the type of data placed into them later to some other type of data.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
// Simple Assignment to a new type

let vagueName;

vagueName = "I'm a string for now.";

document.write("Here's vagueName: " + vagueName);
document.write("<br />");

vagueName = 25.99;

document.write("New value for vagueName: " + vagueName);


Simple Assignment with a function.

You can also assign the value of a variable with the results of a function. This is very common and will look very normal quickly.

  • Notice the value of userName before and after the prompt()
1
2
3
4
5
6
7
8
9
// Simple Assignment from a function

let userName;

document.write("Your user name is: " + userName);

userName = prompt("Enter your user name");

document.write("Your user name is: " + userName);


Simple Assignment can be done to a variable "in-place", from itself to itself.
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
// Simple Assignment in place
let priceOne;
let priceTwo;
let priceTotal;

priceOne = 15.87;

// This arrives into the variable as a string
priceTwo = prompt("Enter a price.");

// Convert the string in the variable into a number
priceTwo = Number(priceTwo);

priceTotal = priceOne + priceTwo;

document.write("Total Price is: " + priceTotal);

Labs

Labs

  1. Lab03: Simple Assignment
    • unit02/labs/lab-03-simpleAssignment.html