ES6 Math.sin(x)
此函数返回x弧度的正弦值。
语法
Math.sin(x)
参数
- X1 - 代表一个数字
例
console.log("---Math.sin()---")
console.log("Math.sin(Math.PI/2): "+Math.sin(Math.PI/2))
console.log("Math.sin(Math.PI/4): "+Math.sin(Math.PI/4))
输出
---Math.sin()---
Math.sin(Math.PI/2): 1
Math.sin(Math.PI/4): 0.7071067811865475
它返回x弧度的余弦值。语法Math.cos(x)参数X1 - 代表一个数字例console.log("---Math.cos()---")console.log("Math.cos(Math.PI): "+M ...