Tutorials References Menu

VBScript Cos Function

❮ Complete VBScript Reference

The Cos function returns the cosine of a specified number (angle).

Syntax

Cos(number)
Parameter Description
number Required. A numeric expression that expresses an angle in radians

Example

Example

<%

response.write(Cos(50.0) & "<br />")
response.write(Cos(-50.0))

%>

The output of the code above will be:

0.964966028492113
0.964966028492113
Show Example »

❮ Complete VBScript Reference