WEEK: 6
Active: February 14th - February 20th
Work Due: February 21st @ 9:00AM

JavaScript Objects

There are ways in JavaScript, to store more than one variable inside a variable! One way to do this is with JavaScript objects.

We will learn later, that JavaScript objects are very special, capable of many things in the language. But, for the time being, we can more simply think of it as a way of collecting, organizing, and cleaning up data and variables.

An object can be thought of as a digital thing. For example, let’s say we have an object called smiley, that represents a “smiley face” object. Objects allow us to store qualities about this smiley face within the object. We can define the size, proportions, color, position, etc., all attached to the smiley object. This collects this related under a shared name space.

To code such an object in JavaScript, we could first declare a variable name space. This name space then needs to be assigned as an object, using a set of curly brackets ({}). Then for each parameter that needs to be added, use a “dot notation” to create additional name spaces within the object. We can use this same dot notation to return the stored data. This is seen in the following code.

// define a smiley variable.
// instantiate the variable as an object
var smiley = {};

// we can then assign qualities to the object
smiley.size = 150;
smiley.eye_mouth_y = -35;
smiley.color = 'yellow';
smiley.mouth_h = 50;

// to return a specific object property
// use the same dot notation
smiley.size // returns 150

The following code, demonstrates the entire use of the above example, showing the subsequent re-assignment of properties, and use of all properties to draw a smiley face.

[ Code Download ] [ View on GitHub ] [ Live Example ]

Instantiating Objects with Properties

To add property values during instantiation, include them within the curly brackets. Each property is added as a unique name space, appended with a colon (:), and the associated data placed following. These become “name/value” pairs.

var myObject = {
    property1: "some data"
}

To add multiple properties, separate each “name/value” pair with a comma (,).

var myObject = {
    property1: "some data",
    property2: "some more data"
}

These properties are accessed the same as above, using dot notation.

Nested Objects

Objects can be nested within objects.

To nest an object, simply assign an object to another object’s property.

// creating a nested object during instantiation
var myObj = {
    property1: "first level data",
    nestedObj: {
        pOne: 1,
        pTwo: 2
    },
    property2: "the last piece of data"
}

// adding an object to another objects property
// through dot notation
var myOtherObj = {};
myOtherObj.innerObj = { innerProp: "inner property", ip2: 2 };

To access properties nested inside properties, continue the dot notation. The above, first example, could have the pOne property access with;

myObj.nestedObj.pOne

{ TODO: }

Please read the following page on JS Objects.

Please watch the following Shiffman video.


Previous section:
Next section: