Description : Best practices for global variables in SASS.
Answer :
Managing global variables inSASS involves defining them in a central location, typically in a `_variables.scss` file, and importing that file wherever needed. For example, create `_variables.scss`with`$primary-color: #333;` and import it using `@import 'variables';`in other SASS files. This approach ensures consistency and easier maintenance of styles across the entire project.