Where not to use arrow function
1
2
var person = { points: 10, score: function(){ this.points++; } };
person.score(); // 11 person.score(); // 12 person.score(); // 13
4
Last updated
Was this helpful?
var person = { points: 10, score: function(){ this.points++; } };
person.score(); // 11 person.score(); // 12 person.score(); // 13
Last updated
Was this helpful?