This workshop is important because:
Why JavaScript?
JavaScript is the most complete, capable language usable across browsers. It lets us change the content of a page programmatically (on the fly) instead of being stuck with just what's written in the HTML code. It enables complex user interactions.
Why learn data types?
The need to process information drives programming languages. JavaScript's data types define how it can store and manipulate information. They're the building blocks of everything that can be done in JavaScript.
For web developers, it's also critically important to be able to work with JavaScript objects. JavaScript's features are mostly built into objects like Array
, Function
, and, for web, document
.
After this workshop, developers will be able to:
- Identify JavaScript data types.
- Give examples of commonly-used JavaScript operations.
- Explain 4 ways to create variables with
var
,let
,const
, or no reserved word. - Get and set the values of variables.
- Differentiate between primitive and reference values.
Before this workshop, developers should already be able to:
- Open the Chrome developer tools (for example, with Command Option J).
- Create variables in the Chrome developer tools using
var
. - Use JavaScript to perform basic arithmetic operations in the developer tools.
A primitive value is represented at the lowest level of implementation of a programming language.
JavaScript has 6 primitive data types:
- string: words or phrases (in quotes)
- number: integer, floating point number (decimal), or
NaN
+ - boolean:
true
orfalse
null
: non-existent object (used for blanking out variables)undefined
: empty variable- symbol: reusable identifier for object properties (only in ES6)
One of JavaScript's quirks is having both null
and undefined
. As a rule of thumb, you should let JavaScript decide when something is undefined
. You should use null
wherever you want to "blank out" a variable so that it has no value.
Primitive Type | Example(s) | Falsey Value(s) |
---|---|---|
string | 'lightyear' , "867-5309" |
'' or "" |
number | 3.1415 , 31 |
0 , -0 , NaN + |
boolean | only true or false |
false |
null | only null |
null |
undefined | only undefined |
undefined |
symbol | Symbol("first") |
 none |
+NaN
is a special global value meaning "Not A Number". NaN
is the returned value when numerical evaluations fail, e.g. 8/"hello"
.
Whiteboarding on your table, write what primitive type you would expect each piece of data about a person to be represented as:
- `name`
- `isGaStudent`, whether or not they are a student at GA
- `age`
- `city`
- `state`
- `zipCode`
- `phoneNumber`
An expression is code that evaluates to some value.
Expressions can include data (like 4
or true
) and operators (like =
, *
, !
), object lookups, and function calls.
Expressions and operators let us process data in useful ways.
1 + 1;
// 2
2 - 1;
// 1
Another commonly used operator in coding is the modulo operator, %
. It finds the remainder after diving left side by right side.
18 % 100;
// 18
7 % 2;
// 1
In JavaScript, you can also use a +
operator on strings. This is called string concatenation. In JavaScript, it can change non-strings into strings if one of the sides is a string already.
"Hello, " + "world!";
// "Hello, world!"
"WDI " + 2017;
// "WDI 2017"
ES6 introduced a more powerful way to combine strings, variables and expressions, called template literals. Get in the habit of using them!
var target = 'world'; // in ES6, we'll use let instead of var. more on that soon!
`Hello, ${target}!`
// "Hello, world!"
`WDI ${2000 + 17}`;
// "WDI 2017"
Variables are labeled locations for storing data. They save programmers time.
If you have a variable called lunchTime
, then instead of writing 1230
over and over in code, a program can access the information by variable name:
var lunchTime = 1230;
lunchTime
// 1230
This is more to type, but it saves time if you ever have to go back to your code and change when lunch is. Instead of searching for 1230
everywhere it appears, you can just change the value where lunchTime
starts storing it, and everything else in scope will 'see' the change.
Working with a partner and whiteboarding on your table, write what type each variable has, as well as what the value of the variable c
would be.
var a = 3;
var b = 7;
var c = a + b;
var a = "Hello";
var b = "name";
var c = a + " " + name;
var a = "Hello";
var b = 5;
var c = a + " " + b;
var a = true;
var b = "The truth is";
var c = `${b} ${a}.`;
There are 4 ways to create a variable in JavaScript. Two of them have been available since before ES6.
- Just assign a value to a name using the assignment operator
=
:
document = 'main';
Creating a variable this gives it global scope, meaning it can be accessed very widely, including anywhere in its file. This is considered a bad practice because it's almost always a mistake, or it leads to mistakes like accidentally overwriting an external variable with the same name.
- Create a variable with the reserved word
var
, with or without giving it an initial value:
var vegetable;
var protein = 'tofurkey';
Variables created with var
have function-level scoping, which means they're defined anywhere inside the function where they're created. If they're not inside a function, they're global. But at least with var
we have the option to keep things more organized and modular.
The two strategies above have been around as long as JavaScript. Variables created without any reserved word or with the reserved word var
have a cool extra property called hoisting. No matter where in their scope they're given a value, they start out inside that scope as undefined
.
That'll be clearer with an example.
Examine the code sample below. What do you think will be logged to the console each time? Write down your guesses, then run the code in developer tools.
function add(a, b) {
console.log('above declaration', sum);
var sum = a + b;
console.log('below declaration', sum);
return sum;
}
console.log(add(2,3));
console.log('outside function scope', sum);
Using var
was the best way to create variables in ES5, but in ES6 two new strategies were introduced.
- Create a variable with the reserved word
let
, with or without giving it an initial value:
let highScorer;
let highScore = 0;
The reserved word let
works very similarly to var
, except that variables created with let
:
* have block scope instead of function scope
* do not get hoisted
* can't be redeclared at the same scope level (the value can change, though)
- Create a constant with the reserved word
const
, and give it an initial value:
const minimum = 0;
"Variables" created with the reserved word const
:
* have block scope instead of function scope (like let
)
* do not get hoisted
* are constant - they can NEVER be changed inside their scope
Now that ES6 is fully in use, best practices say:
- prefer
const
for any named values that don't need to change - prefer
let
for any variables that do change - avoid
var
- never declare a variable without a keyword
In WDI, you will use code with let
, const
, and var
so that you can read, write, and debug any version.
Primitive data types are not enough for most programming purposes. Objects are reference data types that allow us to group primitives together.
Instead of storing a value, variables holding objects store a reference to a location in memory, and the computer looks it up when needed.
var shirt = { size: "L", color: 'green', clean: false };
Objects store information in key-value pairs. The key acts like a label, and the value is the data or behavior associated with that label.
Object
is the most basic reference type in JavaScript. Every other non-primitive we'll use -- Array
, Function
, Date
-- is actually built out from the basic Object
type.
Creating an object literal:
const person = { name: 'Bill', height: '5 feet, 9 inches', age: 34 };
Getting the value associated with a key:
// this is called bracket notation:
person['age']; // 34
// this is called dot notation:
person.age; // 34
// what if key doesn't exist?
person['hasGlasses']; // undefined
Adding a key-value pair:
person['hairColor'] = 'blonde';
person.hairColor = 'blonde';
// { name: 'Bill', height: '5 feet, 9 inches', age: 34, hairColor: 'blonde' }
Setting the value for a key:
person['hairColor'] = 'green';
person.hairColor = 'green';
// { name: 'Bill', height: '5 feet, 9 inches', age: 34, hairColor: 'green' }
Arrays store collections of data in sequential order. Arrays are another example of a reference data type that allows us to group primitives together. Arrays are great for:
- Storing collections of one kind of data
- Ordered lists
- Iterating through data (looping through with an index to find items)
const friends = ["Moe", "Larry", "Curly"];
// ["Moe", "Larry", "Curly"]
Creating an array (literal):
const fruits = ["Apple", "Banana", "Cherry", "Durian", "Elderberry",
"Fig", "Guava", "Huckleberry", "Ice plant", "Jackfruit"];
Getting an element by index:
fruits[0]; // "Apple"
fruits[3]; // "Durian"
Setting the value at an index:
fruits[3] = "Grape";
Finding the number of elements, in the length property:
fruits.length; // 10
Note that length is a property, NOT a method, for JavaScript arrays!
Looping through Arrays:
// new in ES6! - for... of loops
for (let fruit of fruits){
console.log(fruit);
}
// if you need the index
for (let i=0; i<fruits.length; i++){
console.log(`fruit #${i+1} is ${fruits[i]}`);
}
Check out MDN's Array documentation for more information on arrays. In particular, all of the methods listed in the Array instances section are available to use with JavaScript arrays. Commonly used array methods include push
, pop
, join
, sort
, and reverse
.
This is a quick introduction to how to access some useful tools in JavaScript. Later, we'll go in-depth on objects, how they work, and how to create and use them. You'll find many other useful objects and types of objects as you learn more JavaScript. One example is Math
:
In order to perform certain number operations, JavaScript has a Math
object with some very useful methods.
// 2^4
Math.pow(2, 4)
// 16
// returns a random decimal number between 0 and 1
Math.random();
// 0.229375290430
// rounds a floating point number to an integer
Math.round(2.5);
// 3
Use JavaScript's typeof
method to check the type of a variable or value.
Practice with this training.
For web developers, it's critically important to be able to work with JavaScript objects. JavaScript's features are mostly built into objects like Date
, Math
, and document
. We'll cover objects in more detail later.
The most important things to practice right now are:
- getting and setting values from within complex structures that include nested arrays and objects.
- learning to read documentation.