Created
August 22, 2016 12:02
-
-
Save yyYank/d0e0362356511e87089d69505db65fb7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var fn = function(){ // 無名関数でスコープを形成する | |
| var hoge = "hoge"; | |
| return hoge; | |
| }; | |
| // これはできるけど | |
| alert(fn()) | |
| // これはできない | |
| // alert(hoge); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment