FREE Web Template Download
HTML CSS JAVASCRIPT SQL PHP BOOTSTRAP JQUERY ANGULARJS TUTORIALS REFERENCES EXAMPLES Blog
 

VBScript Tan Function


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

Full Reference Complete VBScript Reference