bugl
bugl
HomeLearnPatternsPathsSearch
HomeLearnPatternsPathsSearch

Loading lesson path

Learn/Go/Go Tutorial
Go•Go Tutorial

Go Logical Operators

Flash cards

Review the key moves

1/3
Core idea

What is the main idea behind Go Logical Operators?

Lesson checks

Practice each idea before moving on

Short Mimo-style checks built from this lesson's code, terms, and sequence.

1Quick choice

Which statement best captures the main point of this lesson?

Logical Operators

Logical operators are used to determine the logic between variables or values:

OperatorNameDescriptionExample
&&Logical andReturns true if both statements are truex < 5 && x < 10
Logical orReturns true if one of the statements is truex < 5x < 4
!Logical notReverse the result, returns false if the result is true!(x < 5 && x < 10)

Previous

Go Comparison Operators

Next

Go Bitwise Operators