Hacker News new | ask | show | jobs
by tlrobinson 3279 days ago
Why is

   @autobind
   foo() {
     // ...
   }
more optimal than

   foo = () => {
     // ...
   }

?
1 comments

Please, Nothing is ever _more optimal_.