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
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
For further actions, you may consider blocking this person and/or reporting abuse
Coherence is the first Platform-as-a-Service you can control. Unlike "black-box" platforms that are opinionated about the infra you can deploy, Coherence is powered by CNC, the open-source IaC framework, which offers limitless customization.
kallileiser -
Justin Poehnelt -
JetThoughts Dev -
Zhang Wei -
Top comments (0)