当前位置: 首页 > 文档资料 > ES6 入门教程 >

Math.atan(x)

优质
小牛编辑
123浏览
2023-12-01

它返回x的反正切。

语法 (Syntax)

Math.atan(x)       

参数 (Parameter)

  • X1 - 代表一个数字

例子 (Example)

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

输出 (Output)

---Math.atan()--- 
Math.atan(0): 0 
Math.atan(Math.SQRT1_2): 0.6154797086703874