Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

AND Operator

From Groundhog Learning
Revision as of 15:58, 21 October 2025 by Groundhog (talk | contribs) (Updated via bot)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Symbol used to combine conditions and return true when both conditions are true.

Details

🤖 Pseudocode

if hasEnoughMoney AND hasInventorySpace # true if both conditions are true
    player can buy the item

Related Concepts