Blog

Archive for the JavaScript Category


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


Browser Sniff if on Apple Device using JavaScript
Posted on May 16, 2019 in JavaScript by Matt Jennings

What is the list of possible values for navigator.platform as of today? – from StackOverflow.com

var deviceDetect …

Read more