Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save zackbloom/348a10f147ad63faeb6b to your computer and use it in GitHub Desktop.
Save zackbloom/348a10f147ad63faeb6b to your computer and use it in GitHub Desktop.
Function.prototype.myCall = function (context) {
var args = Array.prototype.slice.call(arguments, 1);
return this.apply(context, args);
}
sayHello = function (greeter, greetie) {
var message = greeter + " says hello to " + greetie + " from " + this;
console.log(message);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment