The SASS Map data-type is used to display one or more key-value pairs. Along with the map functions shown in the below lists, you can also use any of the SASS list functions with maps as well.
The following lists contains all map functions in SASS:
- map-has-key($map, $key) function: This function returns a Boolean value that checks whether the given map contains the given key or not.
- Example:
CSS map-has-key(("red": #ff0000, "yellow": #ffff00), blue)
- Output:
false
- Example:
- map-merge($map1, $map2) function: This function returns a map containing $map2 joined to the end of $map1.
- Example:
CSS map-merge(("red": #ff0000, "yellow": #ffff00), ("blue": #0000ff)
- Output:
("red": #ff0000, "yellow": #ffff00, "blue": #0000ff)
- Example:
- map-keys($map) function: This function returns the list of the keys in the given map.
- Example:
CSS map-keys(("red": #ff0000, "yellow": #ffff00))
- Output:
("red", "yellow")
- Example:
- map-remove($map, $keys) function: This function returns a map without the given keys.
- Example:
CSS map-remove(("red": #ff0000, "yellow": #ffff00), "red")
- Output:
("yellow": #ffff00)
- Example:
- map-values($map) function: This function returns the list of the values in the given map.
- Example:
CSS map-values(("red": #ff0000, "yellow": #ffff00))
- Output:
(#ff0000, #ffff00)
- Example:
- map-get($map, $key) function: This function returns the value associated with the given key.
- Example:
CSS map-get(("blue": #0000ff, "yellow": #ffff00), "blue")
- Output:
#0000ff
- Example: