ES6 Math.pow(x, y)
此方法将基数返回到指数幂,即基于幂指数。
语法
Math.pow(x, y)
参数
- x - 代表基数
- y - 代表指数
回报价值
返回指数幂的基数。
例
console.log("---Math.pow()---")
console.log("math.pow(2,3) : "+Math.pow(2, 3))
console.log("Math.pow(1.7, 2.3) : "+Math.pow(1.7, 2.3))
输出
---Math.pow()---
math.pow(2,3) : 8
Math.pow(1.7, 2.3) : 3.388695291147646
此方法返回数字的平方根。如果数字的值为负,则sqrt返回NaN。语法Math.sqrt ( x );参数x - 代表一个数字返回值返回数字的平方根。例console.log("---Math.sqrt ...