Day 4

  • Take Home Review
  • Control FLow
  • Daily Challenge
  • Edge Cases
  • Debugging
  • Take Home Challenge
  • Questions?
  • If / Else Statements
    • Else If
  • Comparison Operator
    • === strict equal
    • !== strict not equal
    • > greater than
    • >= greater than or equal
    • < less than
    • <= less than or equal
  • Truthy and Falsy
    • Falsy
      • False
      • 0
      • Empty string ""
      • Null
      • Undefined
      • NaN
    • Truthy
      • All other values
  • Logical Operators
    • && and
    • || or
    • ! not
  • Switch Statements
  • Ternary Operator
  1. Complete this Codepen
  • Questions?
  1. Complete this Codepen (scroll to the bottom of your daily challenge)