Skip to content

Instantly share code, notes, and snippets.

@ksakae1216
Created March 26, 2019 00:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ksakae1216/fa428d5875ad80df2cc64eaec1a4bb06 to your computer and use it in GitHub Desktop.
Save ksakae1216/fa428d5875ad80df2cc64eaec1a4bb06 to your computer and use it in GitHub Desktop.
<html>
<head>
<script>
var f = function() {
// 'i'にvarを宣言しない
for(i=0; i<10; i++) {
//'i'を単純にインクリメント
}
};
f();
</script>
<script>
alert(i); // 10が表示される
</script>
</head>
<bod>
javascript scope test
</bod>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment