DEV Community

zhou-yg
zhou-yg

Posted on

What will happened when writing switch case with "break" in a for loop

demonstration code:
javascript
const arr = [1,2,3];
for (const n of arr) {
switch (n) {
case 1: console.log(n); break;
default: console.log(n); break;
}
}

Amazing! the "break" keyword won't break the for loop

Top comments (0)