题一:3的4次方(不会打,请原谅 ==!!!)
3的4次方=3*3*3*3
var a = Math.pow(3,4)
console.log(a)
说明:Math.pow()是用来计算乘方的语法
注意:Math的M是大写;
题二:3的4*5次方
var a =Math.pow(3,4*5)
console.log(a)
2)如何计算根号
题目:根号81
var a = Math.sqrt(81)
console.log(a)
一个Math函数,例如:Math.pow(4,3)返回4的三次幂,
用法:Math.pow(x,y)
x必需传。底数。必须是数字。
y必需传。幂数。必须是数字。
如果结果是虚数或负数,则该方法将返回 NaN。如果由于指数过大而引起浮点溢出,则该方法将返回 Infinity