VOOZH about

URL: https://www.geeksforgeeks.org/css/sass-equality-operators/

⇱ SASS Equality Operators - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

SASS Equality Operators

Last Updated : 4 Apr, 2023

Compatibility: Dart Sass is fully compatible with using equality operators, whereas LibSass and older versions of Ruby Sass (older than version 4.0.0) consider numbers as equal even if they have different units or if one has a unit and the other does not. This behavior was not useful and hence the newer versions have removed this as it violates transitivity. The equality operator tells whether the two values are equal or not. 

Syntax: <expression> == <expression>  The returned output for this shows whether the two expressions are equal, and <expression> != <expression> The returned output for this shows whether the two expressions are not equal. Two expressions are said to be equal if they have the same values and same types, this means different for different types shown below:

  • Two numbers are equal if they have the same value and the same units or after conversion into the same units their values are equal.

Example: 

Output: 

true

Output: 

false

Output: 

true
  • Two strings are considered equal if their content is same whether they are quoted or unquoted.

Example: 

Output: 

true

Output: 

false
  • Two colors are considered equals if they have equal red, green, blue and alpha values

Example: 

Output: 

true

Output: 

false
  • Two lists are equal if they have same contents. Keep in mind that space-separated lists are not equal to comma-separated lists and bracketed lists are not equal to unbracketed lists.

Example: 

Output: 

true

Output: 

false

Output: 

false
  • Two maps are equal if both their keys and values are equal.

Example: 

Output: 

true

Output: 

true
  • true, false and NULL are only equal to themselves.

Example: 

Output: 

true

Output: 

false
  • A function is only equal to itself. Functions are compared by reference, so even if two functions have the same name and definition, they’re considered different if they aren’t defined in the same place.

Example: 

Output: 

true

Output: 

false
Comment
Article Tags:
Article Tags: