Junior — Senior
What output will appear in the console (example 30)
livecode
Task condition
Determine what result will be printed in the console.
for (var arr = []; arr.length < 3; arr.push(1)) {
setTimeout(function () {
// console.log(arr);
}, 1000);
}