SORU - 5 / 15

  • S

    Aşağıdaki kodun çıktısı ne olur?

    var num = 2;
    switch (num)
    {
     case 1: document.write("A");
     case 2: document.write("B");
     case 3: document.write("C");
     default: document.write("D");
    }
    
    
  • A

    A

  • B

    B

  • C

    BC

  • D

    BCD