Blog

Author Archive


Joys of JavaScript (UW Coding Bootcamp Session)
Posted on June 1, 2019 in JavaScript by Matt Jennings

Types of primitive values:

Numbers
Strings
Booleans
undefined
null
Symbol() (ES6)

// confirm only returns a Boolean of true or false
// depending on if I click “Ok” …

Read more


Data Structures: Objects and Arrays
Posted on May 28, 2019 in JavaScript by Matt Jennings

Note: Information below was taken from Eloquent JavaScript, 3rd edition, Chapter 4 Data Structures: Objects and Arrays.

Objects allow …

Read more


JavaScript Functions
Posted on May 27, 2019 in JavaScript by Matt Jennings

Note: Information below was taken from Eloquent JavaScript, 3rd edition, Chapter 3 Functions.

A function definition is a regular …

Read more


JavaScript Program Structure
Posted on May 26, 2019 in JavaScript by Matt Jennings

Note: Information below was taken from Eloquent JavaScript, 3rd edition, Chapter 2 Program Structure.

A fragment of …

Read more


Uncommon Knowledge about JavaScript Operators
Posted on May 26, 2019 in JavaScript by Matt Jennings

Note: The majority of the information below was taken from Eloquent JavaScript, 3rd edition.

There are three special …

Read more