当前位置: 首页 > 网络学院 > 客户端脚本教程 > VBScript > VBScript Sin 函数
The Sin function returns the sine of a specified number (angle).
Sin 函数可返回某个角的正弦值。
Sin(number) |
参数 | 描述 |
---|---|
number | Required. A valid numeric expression that expresses an angle in radians 必选项。number 参数可以是任何将某个角表示为弧度的有效数值表达式 |
document.write(Sin(47)) 输出: 0.123573122745224 |
document.write(Sin(-47)) 输出: -0.123573122745224 |