Created
May 1, 2012 04:15
-
-
Save aoi0308/2564951 to your computer and use it in GitHub Desktop.
クロージャの簡単なサンプル
This file contains 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
/* | |
* 実行にはjQueryが必要。 | |
* if文の中で関数外(forEachメソッドの引数は関数です)の変数 n を参照している。 | |
*/ | |
function doClick() { | |
var arr = [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 ]; | |
var n = $('#num').val(); | |
arr.forEach(function(i) { | |
if (i % n == 0) { | |
console.log(i); | |
} | |
}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment