Skip to content

Instantly share code, notes, and snippets.

@oboshto
Last active July 21, 2017 11:38
Show Gist options
  • Save oboshto/b9ae0f8b409bc16fb6e51c5b84cc7083 to your computer and use it in GitHub Desktop.
Save oboshto/b9ae0f8b409bc16fb6e51c5b84cc7083 to your computer and use it in GitHub Desktop.
Function.prototype.apply.call example
let invokeConsoleMethod = function (customConsole, messages) {
Function.prototype.apply.call(customConsole, console, messages);
};
// invokeConsoleMethod(console.warn, ['heya', 123, [3,4,5]])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment