-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathders07.js
155 lines (113 loc) · 3.11 KB
/
ders07.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
// CLASS DECLARATION
/* class Person {
constructor(name, surname, age) {
this.name = name;
this.surname = surname;
this.age = age;
}
fullName() {
return this.name + " " + this.surname;
}
static showName = "Person";
static staMethod() {
console.log("STATIC METHOD ÇALIŞIYOR");
}
} */
/* console.log(typeof Person) */
/* const arin = new Person("Arin", "Çekiç", 5);
const elis = new Person("Elis", "Çekiç", 3); */
/* console.log(arin instanceof Person);
console.log(elis instanceof Person); */
/* console.log(arin);
console.log(elis);
*/
//console.log(arin.fullName());
//console.log(elis.fullName());
//console.log(Person.fullName());
//console.log(arin.showName);
//console.log(arin.staMethod());
/* console.log(Person.showName);
console.log(Person.staMethod()); */
/* class Person {
constructor(name, surname, age) {
this.name = name;
this.surname = surname;
this.age = age;
}
fullName() {
return this.name + " " + this.surname;
}
}
const arin = new Person("Arin", "Çekiç", 5)
class Engineer extends Person {}; // Engineer -->Subclass (Child) Person --> Superclass (Parent)
const gurcan = new Engineer("Gürcan", "Çekiç", 40); */
/* console.log(arin);
console.log(gurcan); */
// OBJE + (name, surname...) => Person
// Person => Engineer
/* console.log(arin instanceof Person);
console.log(gurcan instanceof Engineer);
console.log(gurcan instanceof Person);
console.log(arin instanceof Engineer); */
/* class Person {
constructor(name, surname, age) {
this.name = name;
this.surname = surname;
this.age = age;
}
fullName() {
return this.name + " " + this.surname;
}
}
class Engineer extends Person {
constructor(name, surname, age, job) {
super(name, surname, age);
this.job = job;
}
getMoney() {
console.log("PARA KAZAN");
}
}
const arin = new Person("Arin", "Çekiç", 5);
const gurcan = new Engineer("Gürcan", "Çekiç", 40, "engineer");
console.log(arin);
console.log(gurcan);
// OBJE + (name, surname, age) => Person
// Person + job, getMoney() => Engineer
console.log(gurcan.getMoney());
//console.log(arin.getMoney());
console.log(arin instanceof Engineer); */
/* class Person {
constructor(name, surname, age) {
this.name = name;
this.surname = surname;
this.age = age;
}
fullName() {
return this.name + " " + this.surname;
}
}
class Engineer extends Person {
constructor(name, surname, age, job) {
super(name, surname, age);
this.name = name;
this.surname = surname;
this.age = age;
this.job = job;
}
getMoney() {
console.log("PARA KAZAN");
}
}
const gurcan = new Engineer("Gürcan", "Çekiç", 40, "engineer"); */
class ExtendedArray extends Array {
shuffle() {
this.sort(() => Math.random() - 0.5);
}
}
let myArr = new ExtendedArray(1,2,3,4,5);
console.log(myArr instanceof ExtendedArray);
console.log(myArr instanceof Array);
console.log(myArr);
myArr.shuffle();
console.log(myArr);