Comparison Operators

Created by Brian Glick, Modified on Wed, 5 Nov at 5:26 AM by Brian Glick

 = (Equals)

The equality operator returns Boolean true if both operands are the same (type and value).  Arrays and objects are checked for deep equality.  Arrays must have the same values in the same order. Objects must have the same key/value pairs (order is not relevant).  Otherwise it returns false.

Examples

  • 1+1 = 2 => true
  • "Hello" = "World" => false

!= (Not equals)

The inequality operator returns Boolean false if both operands are the same (type and value, deep equality).  Otherwise it returns true.

Examples

  • 1+1 != 3 => true
  • "Hello" != "World" => true

> (Greater than)

The 'greater than' operator returns Boolean true if the LHS is numerically greater than the RHS.  Otherwise it returns false.

Examples

  • 22 / 7 > 3 => true
  • 5 > 5 => false

< (Less than)

The 'less than' operator returns Boolean true if the LHS is numerically less than the RHS.  Otherwise it returns false.

Examples

  • 22 / 7 < 3 => false
  • 5 < 5 => false

>= (Greater than or equals)

The 'greater than or equals' operator returns Boolean true if the LHS is numerically greater than or equal to the RHS.  Otherwise it returns false.

Examples

  • 22 / 7 >= 3 => true
  • 5 >= 5 => true

<= (Less than or equals)

The 'less than or equals' operator returns Boolean true if the LHS is numerically less than or equal to the RHS.  Otherwise it returns false.

Examples

  • 22 / 7 <= 3 => false
  • 5 <= 5 => true

in (Inclusion)

The array (sequence) inclusion operator returns Boolean true if the value of the LHS is included in the array of values on the RHS.  Otherwise it returns false.  If the RHS is a single value, then it is treated as a singleton array.

Examples

  • "world" in ["hello", "world"] => true
  • "hello" in "hello" => true
  • library.books["Aho" in authors].title

Was this article helpful?

That’s Great!

Thank you for your feedback

Sorry! We couldn't be helpful

Thank you for your feedback

Let us know how can we improve this article!

Select at least one of the reasons
CAPTCHA verification is required.

Feedback sent

We appreciate your effort and will try to fix the article