Skip to content

Instantly share code, notes, and snippets.

@aoi0308
Created May 1, 2012 04:15
Show Gist options
  • Save aoi0308/2564951 to your computer and use it in GitHub Desktop.
Save aoi0308/2564951 to your computer and use it in GitHub Desktop.
クロージャの簡単なサンプル
/*
* 実行には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