JavaScript Example (Program)
Learn Details

What is the use of Conditional Ternary Operators?

conditional ternary operator का use if else statement की तरह condition को check करने के लिए किया जाता है और यह Boolean value को return करता है।

Different between conditional Ternary operator & if else statement ?

if else statement में multiple condition को check किया जाता है जबकि conditional ternary operator का use single condition को check करने के लिए किया जाता है।

Syntax :

(condition)? True Statement : False Statement

Note : इसमें 3 operation होता है।

1. (Condintion)
पहला operation condition के लिए use किया जाता है। इसमें () round brasses के अंदर condition चेक किया जाता है ।

2. True Statement
दूसरा operation का use true value के लिए किया जाता है ।

3. False Statement
तीसरा operation का use false statement के लिए किया जाता है ।

Example 1:

<script>

            var a=10;

            var b=5;

            var c = (b==10) && (a==10);

            document.write(c);

</script>

Out Put :

false

Example 2:

<script>
var a="Mr"
var b;
(a>="Mr")? b="Hello Mr. India": b="Hell Miss. India";
document.write(b);
</script>

Out Put :

Hello Mr. India