Skip to content

Instantly share code, notes, and snippets.

@yyYank
Created August 22, 2016 12:02
Show Gist options
  • Select an option

  • Save yyYank/d0e0362356511e87089d69505db65fb7 to your computer and use it in GitHub Desktop.

Select an option

Save yyYank/d0e0362356511e87089d69505db65fb7 to your computer and use it in GitHub Desktop.
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