Open In App

SASS Equality Operators

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:



Example: 




@debug 2px == 2px

Output: 



true




@debug 1px == 1em

Output: 

false




@debug 96px == 1in

Output: 

true

Example: 




@debug geeksforgeeks == "geeksforgeeks"

Output: 

true




@debug geeksforgeeks == GFG

Output: 

false

Example: 




@debug hsl(120, 72%, 80%) == #1ba61b

Output: 

true




@debug rgba(120. 236, 135, 0.1) == rgba(120, 236, 135, 0.5)

Output: 

false

Example: 




@debug (2, 4, 6) == (2, 4, 6)

Output: 

true




@debug (2 4 6) == (2, 4, 6)

Output: 

false




@debug (2 4 6) == [2 4 6]

Output: 

false

Example: 




$gradient: ("green" : abc, "cyan" : def)

Output: 

true




@debug $gradient == ("green" : abc, "blue" : ghi)

Output: 

true

Example: 




@debug true == true

Output: 

true




@debug false == null

Output: 

false

Example: 




@debug solve(24) == solve(24)

Output: 

true




@debug solve(24) == solve("geeksforgeeks")

Output: 

false

Article Tags :