Hacker News new | ask | show | jobs
by pluma 3447 days ago
The semantics of 'this' in TS are the same as in JS and they're only a problem if you expect TS to be Java rather than JS.
1 comments

I use the '=>' operator to get a 'this' reference that does what you'd expect (like in Java) by getting whatever object is running rather than the typical JS 'this' of the function. Trivial example is here:

https://github.com/Clay-Ferguson/meta64/blob/master/src/main...