Home »
MCQs »
SASS MCQs
Which Sass function is used to convert the string to the lowercase?
22. Which Sass function is used to convert the string to the lowercase?
- str-lower(string)
- str-lwr(string)
- str-lower-case(string)
- to-lower-case(string)
Answer: D) to-lower-case(string)
Explanation:
The to-lower-case(string) function is used to convert the string to the lowercase.
Example:
to-lower-case("IncludeHelp")
Result: "includehelp"