-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path10-object-literals.js
59 lines (53 loc) · 1.13 KB
/
10-object-literals.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/**
* ******************************
* Object Literals
* ******************************
**/
/**
* ********************
* Creating Object Literal
* ********************
**/
const person = {
firstName: 'John',
lastName: 'Doe',
age: 36,
email: '[email protected]',
hobbies: ['music', 'sports'],
address: {
city: 'Manchester',
state: 'NH'
},
getBirthYear: function() {
return 2019 - this.age;
}
};
let val;
val = person;
/**
* ********************
* Get specific value using the key
* ********************
**/
val = person.firstName; // Method 1: Dot Notion
val = person['firstName']; // Method 2: Brachet Notation
val = person.age;
val = person.hobbies[1];
val = person.address.state;
val = person.address['city'];
val = person.getBirthYear();
console.log(val);
/**
* ********************
* Arrays of Objects
* ********************
**/
const people = [
{ name: 'John', age: 30 },
{ name: 'Mike', age: 23 },
{ name: 'Nancy', age: 40 }
];
// loop through array and print out the names of each person within the people array.
for (let i = 0; i < people.length; i++) {
console.log(people[i].name);
}