Control Flow & Loops

What will be the output of this code? let x = 0; while(x < 5) { x++; if(x === 3) break; console.log(x); }
Next Question (4/30)