Please note, this is a STATIC archive of website www.w3schools.com from 05 May 2020, cach3.com does not collect or store any user information, there is no "phishing" involved.
THE WORLD'S LARGEST WEB DEVELOPER SITE

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