Calls a method of an object, substituting another object for the current object.
call(thisArg, ...args)
thisArg
The object to be used as the current object.
args
A list of arguments to be passed to the method.
The result of calling the method.
let pow = (x, e) => x ** e
pow.call(null, 2, 16)
65536