-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththis.html
More file actions
40 lines (35 loc) · 1019 Bytes
/
this.html
File metadata and controls
40 lines (35 loc) · 1019 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>This | JavaScript This Properties</title>
</head>
<body>
<h1>This is not confused anymore!</h1>
<script>
const myObj = {
name: 'Karim uddin',
getFullName(){
console.log(this);
return 'Mr.' + this,name;
}
}
// myObj.getFullName();
const anotherObj = {
name: 'Samad ali'
}
// anotherObj.getFullName = myObj.getFullName;
// console.log(anotherObj.getFullName);
// myObj.getFullName();
// anotherObj.getFullName();
function add(a, b){
console.log(this);
return a + b;
}
add(5, 10); // For call Parent Structure (Global/Window)
anotherObj.sum = add;
anotherObj.sum(); // For call Parent Structure (Local)
</script>
</body>
</html>