-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
55 lines (43 loc) · 1.43 KB
/
app.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
function a() {
console.log(this);
//=> Window http://127.0.0.1:5500/index.html
this.newvariable = 'hello';
}
var b = function() {
console.log(this);
}
a();
//=> hello
console.log(newvariable); // not good!
b();
//=> Window http://127.0.0.1:5500/index.html
var c = {
name: 'The c object',
log: function() {
var self = this;
self.name = 'Updated c object';
console.log(self);
// Object { name: "Updated c object", log: log()}
var setname = function(newname) {
self.name = newname;
}
setname('Updated again! The c object');
console.log(self);
//Object { name: "Updated again! The c object", log: log()}
}
}
c.log();
/* ausgabe:
Window http://127.0.0.1:5500/index.html
hello
Window http://127.0.0.1:5500/index.html
Object { name: "Updated c object", log: log()
}
Object { name: "Updated again! The c object", log: log()
}
/** ___________________________________self = this___________________________________________________________
* self = this; speichert eine Referenz auf das aktuelle Objekt in der Variablen self.
* Dadurch behält man den Zugriff auf das ursprüngliche Objekt, selbst wenn man innerhalb verschachtelter Funktionen ist.
* Das verhindert, dass this in verschachtelten Funktionen auf das globale Objekt(Window) verweist und hilft, unerwartete
* Probleme zu vermeiden, die durch den Kontextverlust entstehen können.
*/