Hacker News new | ask | show | jobs
by coldtea 3294 days ago
>Yep, we are using arrow functions and other ES2015+ goodies, but they don't help with event handlers.

They do. Just do:

  myHandler = (v) => {
    ...
  }
and you don't need to bind in the constructor anymore. You'll need to use Babel of course to transpile that.
1 comments

Yes, class properties syntax. I mentioned that in the article.
Hmm, so why do you say "but they don't help with event handlers"? Because it's not yet standard?
Sorry, I didn't think about the arrow functions being used in class property syntax too. :) So yes, they do help with event handlers, I stand corrected.