ES6 Math.atan2(x,y)

此方法返回其参数的商的反正切值。atan2方法返回-pi和pi之间的数值,表示(x,y)点的角度θ。

语法

Math.atan2(x,y)

参数

  • x和y - 表示数字

console.log("---Math.atan2()---")
console.log("Math.atan2(0): "+Math.atan2(0,1))
console.log("Math.atan2(Math.SQRT1_2): "+Math.atan2(1,1))

输出

---Math.atan2()---
Math.atan2(0): 0
Math.atan2(Math.SQRT1_2): 0.7853981633974483

此属性返回Map对象中键/值对的数量。语法Map.size例var myMap = new Map();myMap.set("J", "john");myMap.set("M", "mary");myMap.set ...