Language Basics JavaScript DHTML



Nested Indented Conditional statements

var prefChoice = 1;
var stateChoice = 'R';
var genderChoice = 'F';
if (prefChoice == 1) {
   if (stateChoice == 'R') {
      if (genderChoice == 'M') {
         document.write("...");
      }
   }