Control Flow & Loops

What does the following code output? for(let i=0; i<3; i++) { setTimeout(() => console.log(i), 1000); }
Next Question (7/30)