0
Confused on question
When you have math.abs(math.min(-6,3)) should the answer be 3 not the 6 like the question answer states
2 Answers
+ 2
Math.min returns the smaller of the two number -6 < 3 -> -6 gets returned
Math.abs makes the number positive so -6 -> 6
0
i get it now for some reason I was thinking abs was called first followed by min which would have the result of 3