conditional ternary operator का use if else statement की तरह condition को check करने के लिए किया जाता है और यह Boolean value को return करता है।
if else statement में multiple condition को check किया जाता है जबकि conditional ternary operator का use single condition को check करने के लिए किया जाता है।
(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 के लिए किया जाता है ।
<script>
var a=10;
var b=5;
var c = (b==10) && (a==10);
document.write(c);
</script>
false
<script>
var a="Mr"
var b;
(a>="Mr")? b="Hello Mr. India": b="Hell Miss. India";
document.write(b);
</script>
Hello Mr. India