Swift - Operator Logical Operators

Introduction

Like most programming languages, Swift supports three logical operators:

  • Logical NOT ( ! )
  • Logical AND ( && )
  • Logical OR ( || )

Related Topics