I already know that arrow functions do not have an arguments variable bound to them. This is fine, for the most part, because I can simply use the ...
operator and expand the list of arguments into an array.
But arguments
has a special property arguments.callee
(a reference to the function currently executing), which is extremely useful for recursion or for unbinding listeners. How do I access that value from an arrow function? Is it possible?