Home »
MCQs »
SASS MCQs
Which Sass function is used to remove quotes around string (if any)?
25. Which Sass function is used to remove quotes around string (if any)?
- unquotes(string)
- unquote(string)
- rem-quote(string)
- rem-quotes(string)
Answer: B) unquote(string)
Explanation:
The unquote(string) function is used to remove quotes around string (if any).
Example:
unquote("IncludeHelp")
Result: IncludeHelp