1. If Condition:
Example 1
<html>
<head>
<script>
m = 40;
if(m>=35)
{
document.write("Pass");
document.write("<br/>Congrats!");
}
</script>
</head>
<body>
</body>
</html>
Example 1
<html>
<head>
<script>
m = 40;
if(m>=35)
{
document.write("Pass");
document.write("<br/>Congrats!");
}
</script>
</head>
<body>
</body>
</html>
No comments:
Post a Comment