Forum Moderators: open
var states = {
ALABAMA: {
abbr: "AL",
name: "Alabama",
motto: "We Dare Defend Our Rights"
},
ALASKA: {
abbr: "AK",
name: "Alaska",
motto: "North To The Future"
},
...
}
for (var state in states) {
console.log(states[state].abbr);
}
var SUNNY = {key: 1, value: "Sunny"},
WET = {key: 2, value: "Wet"},
CLOUDY = {key: 3, value: "Cloudy"};
var states = {
ALABAMA: {
abbr: "AL",
name: "Alabama",
motto: {
en: "We Dare Defend Our Rights",
latin: "Sum notta..."
},
years: [
{id: 1996, type: [SUNNY.key, WET.key]},
{id: 1997, type: [WET.key]},
{id: 1998, type: [SUNNY.key, WET.key]},
{id: 1999, type: [SUNNY.key]}
]
},
...
}
console.log(states.ALABAMA.motto.en);
console.log(states.ALABAMA.motto.latin);