CHAPTER - 8

JAVASCRIPT CONDITIONAL STATEMENTS IF, ELSE, ELSE IF



<!DOCTYPE HTML>

<html>

<body>

<script>

var a=20;
var b=30;

if(a>b){
document.write(‘A is greater than B’);
}
else{
document.write(‘B is greater than A’);
}
</script>
</body>
</html>

ELSE IF

<!DOCTYPE html>

<html>
<body>

<script>

var a=20;
var b=30;
var c=40;

if(a>b && a>c){
document.write(‘A is greater than B and C’);
}
else if(b>a && b>c){
document.write(‘B is greater than A and B is greater than C’);
}
else{
document.write(‘C is greater than A and B’);
}
</script>
</body>
</html>

Comments

Popular posts from this blog

CHAPTER - 14

CHAPTER - 18