Consider following code:

switch ("a") {
    case "b":
        console.log("b");
        break;
    default:
        console.log("d");
    case "c":
        console.log("c");
}
What will be printed by the code above?
Explanation
The code will run without error. There is no break keyword in the default block and the output will be "d" and "c"

Следи за CodeGalaxy

Мобильное приложение Beta

Get it on Google Play
Обратная Связь
Cosmo
Зарегистрируйся сейчас
или Подпишись на будущие тесты