I have a simple click handler
$(\'#test\').click( ev => { var $test = $(this); console.log($test
Arrow functions do not bind this, arguments etc. MDN.
this
arguments
An arrow function expression has a shorter syntax compared to function expressions and lexically binds the this value (does not bind its own this, arguments, super, or new.target).
super
new.target