Abs returns the positive version of its input value, if the input is negative, it becomes positive, if its positive it stays the same
Abs takes no parameters
num = -10 log num.abs() // 10
Last updated 1 year ago