Introduction:
In this post we will talk about how to handle javascript objects.
On the bottom of this post you will find a jsbin that you can use to play with the code snippets below.
This post was inspired by this book: "Javascript: The good parts" by Douglas Crockford
This post was inspired by this book: "Javascript: The good parts" by Douglas Crockford
How to create new objects:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var flight = { | |
airline: "Oceanic", | |
number: 815, | |
//you can have nested objects | |
departure: { | |
IATA: "SYD", | |
time: "2004-09-22 14:55", | |
city: "Sydney" | |
}, | |
arrival: { | |
IATA: "LAX", | |
time: "2004-09-23 10:42", | |
city: "Los Angeles" | |
} | |
}; | |
var name; | |
console.log("Here are the properties of my brand new object:"); | |
for(name in flight){ | |
console.log(name); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//------------------- How to retrieve object properties ----------------------------- | |
console.log(flight.airline); //"Oceanic" | |
console.log(flight["airline"]); //"Oceanic" | |
console.log(flight.departure.IATA); //"SYD" | |
console.log(flight["departure"]["IATA"]); //"SYD" | |
//------------------- How to provide default values --------------------------------- | |
var status = flight.status || "unknown"; | |
//------------------ How to guard against "undefined" throwing TypeError ------------ | |
flight.equipment && flight.equipment.model | |
//----------------- How to update an object ----------------------------------------- | |
flight.ariline = "Spirit Airlines"; | |
console.log(flight.airline); | |
//if property does not exist, it will be added, this is called object augmentation | |
flight.equipment = { | |
model: 'Boeing 777' | |
}; | |
flight.status = 'overdue'; | |
console.log("Here is my updated flight: " + flight); |
How to use inheritance:
The prototype link is only used in retrieval. If we look up a property that does not exist in the current object, the prototype link will be used to go up the chain looking if any of the parents has it.
Adding a new property to the parent object will cause to appear in the children but not the other way around.
Reflection and property deletion:
Also if you delete a property from the child and the parent has the same property, the parent's value will shine through.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Reflection | |
//"typeof" does it for you | |
console.log(typeof flight.number); // 'number' | |
console.log(typeof flight.arrival); // 'object' | |
console.log(typeof flight.manifest); // 'undefined' | |
console.log(typeof flight.toString); // 'function' | |
console.log(typeof flight.constructor); // 'function' | |
/* | |
If you would like to access an object property and want the value of the child not the parent's, you can use "hasOwnProperty" | |
*/ | |
console.log(flight.hasOwnProperty('number')); // true | |
console.log(flight.hasOwnProperty('constructor')); // false | |
//How to delete an object property: | |
delete flight.arrival | |
console.log(flight); |
Global scope problem:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
APP.flight = { | |
airline: "Oceanic", | |
number: 815, | |
//you can have nested objects | |
departure: { | |
IATA: "SYD", | |
time: "2004-09-22 14:55", | |
city: "Sydney" | |
}, | |
arrival: { | |
IATA: "LAX", | |
time: "2004-09-23 10:42", | |
city: "Los Angeles" | |
} | |
}; |