math abs
for math
Returns the absolute value of a number.
Signature
> math abs
Examples
Compute absolute value of each number in a list of numbers
> [-50 -100.0 25] | math abs
╭───┬──────────╮
│ 0 │ 50 │
│ 1 │ 100.0000 │
│ 2 │ 25 │
╰───┴──────────╯