LaunchCode logo
  1. Contents
  2. 5. Making Decisions With Conditionals

5. Making Decisions With ConditionalsΒΆ

  1. 5.1. Booleans
    1. 5.1.1. Boolean Values
    2. 5.1.2. Boolean Conversion
    3. 5.1.3. Boolean Expressions
      1. 5.1.3.1. Comparison Operators
    4. 5.1.4. Check Your Understanding
  2. 5.2. Equality
    1. 5.2.1. Loose Equality With ==
    2. 5.2.2. Strict Equality With ===
    3. 5.2.3. Check Your Understanding
  3. 5.3. Logical Operators
    1. 5.3.1. Boolean Operators
      1. 5.3.1.1. Logical AND
      2. 5.3.1.2. Logical OR
      3. 5.3.1.3. Logical NOT
    2. 5.3.2. Operator Precedence
    3. 5.3.3. Truth Tables
    4. 5.3.4. Check Your Understanding
  4. 5.4. Conditionals
    1. 5.4.1. if Statements
    2. 5.4.2. else Clauses
    3. 5.4.3. else if Statements
    4. 5.4.4. Check Your Understanding
  5. 5.5. Nested Conditionals
    1. 5.5.1. Check Your Understanding
  6. 5.6. Exercises: Booleans and Conditionals
  7. 5.7. Studio: Goal Setting and Getting into the Right Mindset
    1. 5.7.1. Activity
    2. 5.7.2. Resources
  • ← 4.10. Studio: Data and Variables
  • 5.1. Booleans →

Back to top