Skip to content

Instantly share code, notes, and snippets.

@masaru-b-cl
Created July 24, 2014 04:07
Show Gist options
  • Save masaru-b-cl/fefd22e7c5cc95fee417 to your computer and use it in GitHub Desktop.
Save masaru-b-cl/fefd22e7c5cc95fee417 to your computer and use it in GitHub Desktop.
無名関数で外部ブロックの変数の操作
<script type="text/javascript">
var a = 1;
var f = function() {
a++;
}
alert(a); // 1
f();
alert(a); // 2
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment