VBScript Sin Function

The Sin function returns the sine of a specified number (angle)."

Example

Example

<%

response.write(Sin(47) & "<br />")
response.write(Sin(-47))

%>

The output of the code above will be:

0.123573122745224
-0.123573122745224

❮ Complete VBScript Reference