ASIN in JS
Description
Function that returns the arcsine of a specified number (JavaScript ASIN function Documentation).
Sample Source Pattern
Syntax
Math.asin( expression )
Arguments
expression
: Numeric expression, where expression is in.
Return Type
Numeric expression between and . If the numeric expression sent by parameter is out of the domain of the arccosine , the function returns NaN.
Examples
CREATE OR REPLACE FUNCTION compute_asin(a float)
RETURNS float
LANGUAGE JAVASCRIPT
AS
$$
return Math.asin(A);
$$
;
SELECT COMPUTE_ASIN(0.5);
Last updated