Solve a really ugly problem
I know many lines of code where you find follwing that-this reference
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
aCuteFuction: function (a, e) | |
{ | |
//very ugly but necessary to get access to the function scope of the outer function | |
var that=this; | |
var test = function(e, a){ | |
//return closure function value | |
return that.property; | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
aMoreCuteFunction: function (a, e) | |
{ | |
var test = (a,e) => this.property + ' istn it?'; | |
} |
As you can see, you can directly use this in the arrow-function, which is a kind of a shortcut to "function". Thats really nice.
Keine Kommentare:
Kommentar veröffentlichen