switch ("B")
{
case "A":
break;
case "B":
continue;
case "C":
break;
default:
break;
}
simple correct code in C++, but when made in javascript in stable chrome it just throws an error "Illegal continue statement", looks like continue statement is just disallowed in switch in javascript... Heard about return but it just returns and doesnt continue... So is there a way to continue switch in js?