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

5. Making Decisions With ConditionalsΒΆ

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

Back to top