Control Flow & Loops

What is the output of the following code? let result = ''; for(let i=0; i<5; i++) { if(i === 3) break; result += i; } console.log(result);
Next Question (20/30)