DEV Community

Discussion on: What’s your favorite JS interview question?

Collapse
 
vsrikanth49 profile image
Srikanth

for (var i = 0; i < 10; i++) {
setTimeout(
(function (i) {
console.log(i)
})(i),
1000
)
}