-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathobjects.js
72 lines (55 loc) · 1.25 KB
/
objects.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
60
61
62
63
64
65
66
67
68
69
70
71
72
/*
example of object(class) declaration including properties and methods
*/
let person = {
name: 'Shawn',
age: 99,
weekendAlarm: 'No alarms needed',
weekAlarm: 'Alarm set to 7AM',
sayHello: function() {
return `Hello, my name is ${this.name}`;
},
sayGoodbye() {
return 'Goodbye!';
}
};
let friend = {
name: 'Joe'
}
friend.sayHello = person.sayHello;
// new object field or property can be added dynamically
person.hobbies = ['photography', 'listen to music'];
person.hobbies.pop();
let day = 'Saturday';
let alarm;
if (day === 'Saturday' || day === 'Sunday') {
alarm = 'weekendAlarm';
} else {
alarm = 'weekAlarm';
}
console.log(person.hobbies);
console.log(person[alarm]);
console.log(person['name']);
console.log(person['age']);
console.log(person.sayHello());
console.log(friend.sayHello());
/*
Object class set and get methods allow process of data before accessing or setting property values
*/
let person = {
_name: 'Lu Xun',
_age: 137,
set age(newAge) {
if (typeof newAge === 'number') {
this._age = newAge;
} else {
return 'Invalid input';
}
},
get age() {
return `${this._name} is ${this._age} years old.`;
}
};
person.age = 'Thirty-nine';
person.age = 39;
console.log(person.age);