If else:
Example 1
<html>
<head>
<script>
a = 10;
b = 20;
if(a>b)
{
document.write(a + 'is big');
alert('Thank u');
}
else
{
document.write(b + 'is big');
alert('Thank u');
}
</script>
</head>
<body>
</body>
</html>
Example 1
<html>
<head>
<script>
a = 10;
b = 20;
if(a>b)
{
document.write(a + 'is big');
alert('Thank u');
}
else
{
document.write(b + 'is big');
alert('Thank u');
}
</script>
</head>
<body>
</body>
</html>
No comments:
Post a Comment