Syntax sugar for an IIFE (i.e. to use call(() => ...) instead of (()=> ...)() )
call(() => ...)
(()=> ...)()
Like fn.call(thisArg, ...args), but monomorphic, and the thisArg parameter can be omitted or null.
fn.call(thisArg, ...args)
thisArg
Optional
Syntax sugar for an IIFE (i.e. to use
call(() => ...)instead of(()=> ...)())