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

VBScript Sin function


May 13, 2021 VBScript


Table of contents


VBScript Sin function

The VBScript Sin function is used to calculate the sine value of the angle.


VBScript Sin function Complete VBScript reference manual

The Sin function returns the sine of the specified number (angle).

Grammar

Sin(number)

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

document.write(Sin(47) & "<br />")
document.write(Sin(-47))

</script>

The above example output results:

0.123573122745224
-0.123573122745224

Try it out . . .

VBScript Sin function Complete VBScript reference manual