当前位置: 首页 > 网络学院 > 客户端脚本教程 > VBScript > VBScript Atn 函数
The Atn function returns the arctangent of a specified number.
Atn 函数可返回数值的反正切值
Atn(number) |
参数 | 描述 |
---|---|
number | Required. A numeric expression 必选项。number 参数可以是任意有效的数值表达式 |
document.write(Atn(89)) 输出: 1.55956084453693 |
document.write(Atn(8.9)) 输出: 1.45890606062322 |
'calculate the value of pi 输出: 3.14159265358979 |