0
who helps me?
how to understand? Math.abs (Math.min (-6, 3)) // 6 ???
2 ответов
+ 1
Math.min() return smaller argument (-6).
Then Math.abs() return the absolute value of argument (abs of -6 is 6)
+ 1
Thanks
how to understand? Math.abs (Math.min (-6, 3)) // 6 ???