Tag view

#operators

Cross-subject tag search for related interview cards.

Clear

Results update as you type. Press / to jump straight into search.

Tagged with operators

2 cards

Python Easy Theory

Python operators overview

Python includes arithmetic, comparison, logical, membership, identity, bitwise, and assignment operators.

  • Operator families solve different problems
  • `is` is identity, `==` is equality
  • Bitwise operators are lower-level but still interview-relevant

Python operators overview

JavaScript Medium Theory

Arithmetic, comparison, logical, ternary, nullish coalescing, optional chaining, and short-circuit operators

JavaScript operators cover math, comparisons, boolean logic, fallback values, safe property access, and concise branching.

  • `??` differs from `||`
  • Optional chaining stops on nullish access
  • Short-circuiting affects evaluation

Arithmetic, comparison, logical, ternary, nullish coalescing, optional chaining, and short-circuit operators