Which Sass function is used to get the maximum value from the given numbers?

30. Which Sass function is used to get the maximum value from the given numbers?

  1. maximum(number...)
  2. getmax(number...)
  3. max(number...)
  4. maxvalue(number...)

Answer: C) max(number...)

Explanation:

The max(number...) function is used to get the maximum value from the given number.

Example:

max(15,1 7, 90, 0, -3)
Result: 90

Comments and Discussions!

Load comments ↻






Copyright © 2024 www.includehelp.com. All rights reserved.