mirror of
https://github.com/danog/sass-site.git
synced 2024-12-11 17:09:52 +01:00
12 lines
385 B
Plaintext
12 lines
385 B
Plaintext
|
{% codeExample 'map-get', false %}
|
||
|
$font-weights: ("regular": 400, "medium": 500, "bold": 700);
|
||
|
|
||
|
@debug map.get($font-weights, "medium"); // 500
|
||
|
@debug map.get($font-weights, "extra-bold"); // null
|
||
|
===
|
||
|
$font-weights: ("regular": 400, "medium": 500, "bold": 700)
|
||
|
|
||
|
@debug map.get($font-weights, "medium") // 500
|
||
|
@debug map.get($font-weights, "extra-bold") // null
|
||
|
{% endcodeExample %}
|