The built-in JavaScript method Function.prototype.call()
allows you to invoke a function with an explicit this
value and arguments passed one by one.
Your task: Implement a custom version named Function.prototype.myCall
.
⚠️ You should not use the native call
method internally.