MeshWorld India LogoMeshWorld.
others2 min read

Dart - Relational Operators

Listen to ArticleAI Speech
~2 min read narration
100%
Dart - Relational Operators

Dart provides operators that can be used to check the relationship between values or values within variables also known as operands.

All relational operators, less than(<), less than or equal to(<=), greater than(>), greater than and equal to(>=) gives resultant value in boolean i.e either true or false after evaluation.

In this article, you will find Relational operators provided by Dart.

Relational operators

OperatorDescriptionExample
<Less thanx == y
<=Less than or equal tox != y
>Greater thanx == y
>=Greater than or equal tox != y
  • All of these relational operators are binary operators.
  • All these relational operators also follow the general structure of Operand Operator Operand, meaning that an operator is always surrounded by two operands.
  • For example, an expression x >= y is a binary operation, where x and y are two operands and >= is an operator. If value of x is greater than y you will get true as value else false.
main() {
  // create variables
  int a = 10, b = 12;

  // value of a and b
  print('Value of a is $a and b is $b');

  // > operator
  print(a > b); // false

  // < operator
  print(a < b); // true

  // >= operator
  print(a >= b); // false

  // <= operator
  print(a <= b); // true
}

Hope you like this!

Keep helping and happy 😄 coding

Reader Quality Feedback

Did this technical guide help solve your problem?

Suggest Errata ($0)
Vishnu
Primary Author

Vishnu

Founder & Principal Architect at MeshWorld. Senior engineer and instructor specializing in AI agent systems, scalable web architecture, and modern development workflows.

Explore Author Archive
Compute Fuel & Open Testbed
100% Independent & Verified

Fuel High-Density, Zero-Fluff Engineering Deep-Dives

Every guide on MeshWorld is validated on physical Linux nodes and reproducible testbeds. If this article saved you hours of debugging or unblocked production, consider funding our next cluster run.

Weekly Dispatch

Join MeshWorld Dispatch

Get practical tutorials, system blueprints, and curated AI engineering notes straight to your inbox. No fluff, zero spam.

Zero spam. 1-click unsubscribe anytime.Prefer RSS?
Curated Continuations

Up Next in This Domain.

Browse Full Archive