I like arrow functions for their concise syntax.
However, they appear not to be usable as thisArg parameter, that allows to enclose a state in the many Array methods and static functions that support it:
Array.from({ length: 1 }, () => console.log(this), 'Hello'); // window
Is it somewhat possible to use arrow functions and retrieve the proper this when thisArg is being provided?