2693. Call Function with Custom Context
https://leetcode.com/problems/call-function-with-custom-context
Javascript
Function.prototype.callPolyfill = function(context, ...args) {
Object.prototype._func = this
return context._func(...args)
}