Bu eğitimde öğreneceksiniz-
- Koşullu İfadeler nasıl kullanılır
- Farklı Koşullu İfade Türleri
- If ifadesi
- If… Else ifadesi
- If… Else If… Else ifadesi
Koşullu İfadeler nasıl kullanılır
Koşullu ifadeler, farklı koşullara göre yürütme akışına karar vermek için kullanılır. Bir koşul doğruysa, bir eylem gerçekleştirebilir ve koşul yanlışsa başka bir eylem gerçekleştirebilirsiniz.
Farklı Koşullu İfade Türleri
JavaScript'te başlıca üç tür koşullu ifade vardır.
- If ifadesi
- If… Else ifadesi
- If… Else If… Else ifadesi
If ifadesi
Sözdizimi:
if (condition){lines of code to be executed if condition is true}
Yalnızca belirli bir koşulu kontrol etmek istiyorsanız If ifadesini kullanabilirsiniz.
Bunu kendiniz deneyin:
IF İfadeleri !!!
If… Else ifadesi
Sözdizimi:
if (condition){lines of code to be executed if the condition is true}else{lines of code to be executed if the condition is false}
If kullanabilirsiniz
… .Else ifadesi, iki koşulu kontrol etmeniz ve farklı bir kod seti çalıştırmanız gerekiyorsa.Bunu kendiniz deneyin:
Eğer… Diğer İfadeler !!! ");Başkadocument.write ("İyi Günler !!!
");
If… Else If… Else ifadesi
Sözdizimi:
if (condition1){lines of code to be executed if condition1 is true}else if(condition2){lines of code to be executed if condition2 is true}else{lines of code to be executed if condition1 is false and condition2 is false}
If kullanabilirsiniz
… .Else If… .Else ifadesi ikiden fazla koşulu kontrol etmek istiyorsanız.Bunu kendiniz deneyin: