6. Go - Logical Operators Basics

Operators:

&& // AND

|| // OR

! // NOT

== // EQUAL

>=

<=

>

<

% // Modulus %, for remainders


Operators vs Operands:

- Operators are the symbols that compare logic.

- Operands are the objects being compared by the operators.


Comments

Popular posts from this blog

2. FreeCodeCamp - Dynamic Programming - Learn to Solve Algorithmic Problems & Coding Challenges

20. Data Analytics - Analyze Data to Answer Questions - Week 1

3. Algorithms - Selection Sort