Returns the arccosine of a number.
function acos( number : Number ) : Number
Required. A numeric expression.
The return value is between 0 and pi, representing the arccosine of the number argument. If number is less than -1 or number is greater than +1, the return value is NaN.
Version 1
Math Object