Challenge 28
⬆️
Absolute Value
Create a function that returns the absolute value of a number. The absolute value is the magnitude of the number, independent of the sign
Examples:
absolute(9) returns 9
absolute(-9) returns 9
absolute(-123.456) returns 123.456