Chapter 3: Control Statements

The min and max are overloaded to return the minimum and maximum numbers between two numbers. The abs is overloaded to return the absolute value of the number. max(a, b)and min(a, b) // Returns the maximum or minimum of two parameters. abs(a) // Returns the absolute value of the parameter. Examples: Math.max(2, 3) returns 3 ................
................