JavaScript Example (Program)
Learn Details

Q. What is If else Statement ?

if_else Statement में जब condition 'true' होती है तब if statement के अंदर code run होती है |अगर condition false होती है तो else statement के अंदर code run होती है |

Syntax :

            if(condition){

                        //if statement(s);

            }else{

                        //else statement(s);

            }

Example :

<script>

var a =18;

if(a>=18){

            document.write("You are Young");

}

</script>

Out Put : You are Young