THE WORLD'S LARGEST WEB DEVELOPER SITE
HTMLCSSJAVASCRIPTSQLPHPBOOTSTRAPJQUERYANGULARXML
 

VBScript Cos Function


VBScript Reference 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 »

VBScript Reference Complete VBScript Reference