JavaScript Example (Program)
Learn Details

Q. What is If Statement ?

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

Syntax :

if(condition){

            //if statement(s);

}

Example :

<script>

var a =18;

if(a>=18){

            document.write("You are Young");

}

</script>

Out Put : You are Young