JavaScript Example (Program)
Learn Details

Q. What is the list of Logical Operators ?

Operators Syntex

&&

logical and

||

logical or

!

logical not

Q. What is the use of (&&) logical and operators ?

इसमें दो condition को check किया जाता है| जिसमें से दोनों condition को true होने जरुरी होता है | तभी यह true value को return होता है | अगर दोनों में से एक भी condition false होगा तो यह false return करके देगा |

Example 1:

<script>

            var a=10;

            var b=5;

            var c = a>b && b>=1;

            document.write(c);

</script>

Out Put : true

Example 2:

<script>

            var a=17;

            if (a>=18 && a<=30){

                        document.write("Your are Young")

            }

            else{

            document.write("Your are not Young")

            }

</script>

Out Put : Your are not Young

Q. What is the use of (||) logical or operators?

इसमें दो condition को check किया जाता है जिसमें से दोनों में से एक भी condition true होने पर यह हमें true value को return करके देता है। अगर दोनों condition false होगा तो यह false return करेगा

Example 1:

<script>

            var a=10;

            var b=5;

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

            document.write(c);

</script>

Out Put : true

Example 2:

<script>

            var a=17;

            if (a>=30 || a<=18){

                        document.write("Your are Young")

            }

            else{

            document.write("Your are not Young")

            }

</script>

Out Put : Your are Young

Q. What is the use of (!) logical no operators ?

इसमें condition को false होने के बाद ही यह हमें true value को return करके देगा

Example 1:

<script>

            var a=10;

            var b=5;

            var c= (a !==b);

            document.write(c);

</script>

Out Put : true