Create an if else ladder in JavaScript

Description

The following code shows how to create an if else ladder.

Example


<!--from  w w  w  .j  ava 2  s.  com-->
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
var stateCode = 'MO';

if (stateCode == 'OR') {
taxPercentage = 3.5;
} else if (stateCode == 'CA') {
taxPercentage = 5.0;
} else if (stateCode == 'MO') {
taxPercentage = 1.0;
} else {
taxPercentage = 2.0;
}

document.write(taxPercentage);

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

Click to view the demo

The code above generates the following result.

Create an if else ladder in JavaScript
Home »
  Javascript Tutorial »
    Statement »
      If
Javascript Tutorial If
Compare number to boolean in if statement i...
Create an if else ladder in JavaScript
Nested if else statement in JavaScript
Nested if else statement with parentheses i...
Use Not Equal operator in if statement in J...
Use if else statement to check number range...
Use if/else to check the returning value fr...
Use if statement to compare the numbers in ...
Use if statement to compare the value again...
Use number variable directly in if statemen...
Use typeof operator in if statement in Java...