Math.acos(x)


此函数返回x的反余弦值。

语法

Math.acos(x)

参数

  • X1 - 代表一个数字

console.log("---Math.acos()---")
console.log("Math.acos(0): "+Math.acos(0))
console.log("Math.acos(Math.SQRT1_2): "+Math.acos(Math.SQRT1_2))

输出

---Math.acos()---
Math.acos(0): 1.5707963267948966
Math.acos(Math.SQRT1_2): 0.7853981633974483