Testing value in range : If « Language Basics « JavaScript DHTML






Testing value in range

   


<html>
<head>
<title>Testing value in range</title>
<script type="text/javascript">
var nValue = 0;

if (nValue >= 0 && nValue <= 100) {
   alert("value between 0 and 100, inclusive");
} else if (nValue > 0 && nValue < 100) {
   alert("value between 0 and 100 exclusive");
} else if (nValue > 100) {
  alert ("value over 100");
} else if (nValue > 0) {
  alert ("value is negative");
}

</script>
</head>
<body>
</body>
</html>

   
    
    
  








Related examples in the same category

1. Determining Whether Lowercase or Uppercase Strings Are 'More Equal' Using an If Statement
2.If statement
3.Example for If...Else statement.
4.An if..else if...else statement.
5.The else Block Responds to a false Value
6.Nested if Statements
7.Deeply Nested if. . .else Constructions
8.Compare string and alert in dialog
9.Compare int value
10.Compare string value in if statement
11.Nested if statement, logic operator and regular expression
12.Is your input a Yes
13.Use if statement to check the value range
14.if...then...else...if
15.Nested Indented Conditional statements