-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathArrowFunctions2.js
67 lines (54 loc) · 1.45 KB
/
ArrowFunctions2.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
// ES5
var box5 = {
color: 'green',
position: 1,
clickMe: function () {
var self = this;
document.querySelector('.green').addEventListener('click', function () {
var str = 'This is box number ' + self.position + ' and it is ' + self.color;
alert(str);
});
}
}
// box5.clickMe();
// ES6
const box6 = {
color: 'green',
position: 1,
clickMe: function () {
document.querySelector('.green').addEventListener('click', () => {
var str = 'This is box number ' + this.position + ' and it is ' + this.color;
alert(str);
});
}
}
box6.clickMe();
const box66 = {
color: 'green',
position: 1,
clickMe: () => {
document.querySelector('.green').addEventListener('click', () => {
var str = 'This is box number ' + this.position + ' and it is ' + this.color;
alert(str);
});
}
}
box66.clickMe();
function Person(name) {
this.name = name;
}
// ES5
Person.prototype.myFriends5 = function (friends) {
var arr = friends.map(function (el) {
return this.name + ' is friends with ' + el;
}.bind(this));
console.log(arr);
}
var friends = ['Bob', 'Jane', 'Mark'];
new Person('John').myFriends5(friends);
// ES6
Person.prototype.myFriends6 = function (friends) {
var arr = friends.map(el => `${this.name} is friends with ${el}`);
console.log(arr);
}
new Person('Mike').myFriends6(friends);