Link Search Menu Expand Document

Math.sin methods

Explanation Find the sine.
Call format var v = Math.sin (x)
Return value Returns the sine of x as a Number.
Arguments Number x Value to find the sine
Exception None
Example of use
var v1 = Math.sin (Math.PI / 3);
print (v1, "¥ n");
var v2 = Math.asin (v1);
print (v2, "¥ n");
Related item asin, cos, tan methods