Skip to content

Instantly share code, notes, and snippets.

@st98
Last active August 29, 2015 14:13
Show Gist options
  • Save st98/f45215a404dd2fa96e2b to your computer and use it in GitHub Desktop.
Save st98/f45215a404dd2fa96e2b to your computer and use it in GitHub Desktop.
アロー関数。挙動を確かめたかった。
typeof (()=>{})(); // => 'undefined'
typeof (()=>({}))(); // => 'object'
/**/
(()=>this)(); // => Window
(()=>this).call(1); // => 1
(()=>((()=>this)())).call(1); // => Window
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment