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 Tan Function


❮ Complete VBScript Reference

The Tan function returns the tangent of a specified number (angle).

Syntax

Tan(number)

Parameter Description
number Required. A valid numeric expression that expresses an angle in radians

Example

Example

<%

response.write(Tan(40) & "<br />")
response.write(Tan(-40))

%>

The output of the code above will be:

-1.1172149309239
1.1172149309239
Show Example »

❮ Complete VBScript Reference