判断题
var a = [];for (let i = 0; i < 10; i++) {a[i] = function () {console.log(i); };}a[6]();输出结果是6 。
【参考答案】
正确
点击查看答案
