Home »
MCQs »
SASS MCQs
Which Sass function is used to get the minimum value from the given numbers?
31. Which Sass function is used to get the minimum value from the given numbers?
- minimum(number...)
- getmin(number...)
- min(number...)
- minvalue(number...)
Answer: C) min(number...)
Explanation:
The min(number...) function is used to get the minimum value from the given number.
Example:
max(15,1 7, 90, 0, -3)
Result: -3