JavaScript Example (Program)
Learn Details

Q. What is if else if Statement ?

If else if Statement में अगर if की Condition true होती है तो if statement के अंदर code run होती है  |

अगर if का condition false होती है  तो वो अगले condition मतलब else  if  statement में  जाकर के condition को check करती  है |  अगर वो condition true होता है तो वो code else if statement के अंदर run होती है  |

अगर कोई भी condition true नहीं होती तो वो else का statement execute करता है |

Syntax :

            if(condition){

                        //if statement(s);

            }else if(condition){

                        //else if statement(s);

            }else{

                        //else statement(s);

            }

Example :

<script>

            var a = 5;

            if(a>=45){

               document.write("You are old");

            }

            else if(a>=18){

                        document.write("You are Young");

            }

            else{

                        document.write("You are Not Kids");

 

            }

</script>

Out Put : You are Not Kids