function createFunction() {
var result = new Array();
for (var i = 0; i < 10; i++) {
result[i] = function() {
return i;
};
}
return result;
}
console.log(createFunction());
如题上一段代码为什么输出的是
[ [Function],
[Function],
[Function],
[Function],
[Function],
[Function],
[Function],
[Function],
[Function],
[Function] ]
Smart猫小萌
慕田峪7331174
FFIVE
相关分类