为您找到搜索结果:5821个
JS中的Math.pow(a,b)方法
定义和用法pow()方法可返回x的y次幂的值。语法Math.pow(x,y)参数描述x必需。底数。必须是数字。y必需。幂数。必须是数字。返回值x的y次幂。说明如果结果是虚数或负数,则该方法将返回NaN。如果由于指数过大而引起浮点溢出,则该方法将返回Infinity。实例在下面的例子中,我们将把pow()运用到不同的数字组合上:<scripttype="text/javascript">document.write(Math.pow(0,0)+"<br/>")document.write(Math.pow(0,1)+"<br/>")document.write(Math.pow(1,1)+"<br/>")document.write(Math.pow(1,10)+"<br/>")document.write(Math.pow(2,3)+"<br/>")document.write(Math.pow(-2,3)+"<br/>")document.write(Math.pow(2,4)+"<br/>...