Coding With Fun
Home Docker Django Node.js Articles Python pip guide FAQ Policy

VBScript Tan function


May 13, 2021 VBScript


Table of contents


VBScript Tan function

The VBScript Tan function is used to return a positive cut value for angles, please refer to this section!


VBScript Tan function Complete VBScript reference manual

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

Grammar

Tan(number)

parameter describe
number Required.Reposits a certain angle as an elevated numerical expression.
<script type="text/vbscript">

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

</script>

The above example output results:

-1.1172149309239
1.1172149309239

Try it out . . .

VBScript Tan function Complete VBScript reference manual