-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnotes.js
82 lines (59 loc) · 1.33 KB
/
notes.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
73
74
75
76
77
78
79
80
81
82
{// OBJECTS
const phone_camera = ""
const phone_model = ""
const phone_memory = ""
const phone_price = ""
call()
photo()
mesaj()
}
const model = ""
const engine = ""
const km = ""
start()
stop()
const user = {
userName: "Albert",
userPassword: "emc2",
userAge: 40,
logIn() {
console.log("Logging in!")
},
logOut() {
console.log("Loggin out!")
},
findLaw(law) {
console.log(`I've found ${law} law!`)
}
}
console.log(user.userName); // Albert
console.log(user["userName"]); // Albert
const propName = "userName";
console.log(user[propName]); // Albert
user.logIn();
user.logOut();
user.findLaw("relativity")
// Property Değişimi
user.userName = "Thomas";
console.log(user.userName);
{// CLASSES
class User {
constructor(param) {
this.property_1_Name = param.prop_1_Name;
this.property_2_Name = param.prop_2_Name;
this.property_3_Name = param.prop_3_Name;
// ...
// ...
// ...
}
myFunction() {
// ...
// ...
}
}
const myUser = new User(/* properties **/)
console.log(myUser.property_1_Name)
console.log(myUser.property_2_Name)
console.log(myUser.property_3_Name)
myUser.myFunction();
}