Description : Syntax for declaring SASS variables.
Answer :
In SASS, you declare a variable using the `$` symbol followed by the variable name and value. For example,`$primary-color: #3498db;` defines a variable named `primary-color`with the value `#3498db`. You can then use this variable throughout your stylesheet to maintain consistency and ease of updates.