Skip to content

Instantly share code, notes, and snippets.

@st98
Last active August 29, 2015 14:03
Show Gist options
  • Save st98/6facf9d67f80e2cf7784 to your computer and use it in GitHub Desktop.
Save st98/6facf9d67f80e2cf7784 to your computer and use it in GitHub Desktop.
var c1, c2;
c1 = console.log;
c2 = console.log.bind(console);
c1('hoge'); // => TypeError: Illegal invocation
c1.call(console, 'hoge'); // => hoge
c2('hoge'); // => hoge
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment