内容目录
Math.pow()
函数用于返回一个数的指定次幂。
该函数属于JavaScript的内置全局对象Math
,所有主流浏览器均支持该函数。
语法
静态函数Math.pow()
的语法如下:
Math.pow( x, n )
参数
参数 | 描述 |
---|---|
x | Number类型指定的数,作为幂的底数 |
n | Number类型指定的数,作为幂的指数 |
返回值
Math.pow()
的返回值为Number类型。返回 x的n次幂,即 xn。
如果参数中存在为NaN
的值,则返回NaN
。
示例&说明
document.writeln( Math.pow( 2.5, 0 ) ); // 1
document.writeln( Math.pow( 2, 10 ) ); // 1024
document.writeln( Math.pow( 5, 1.1 ) ); // 5.873094715440096
document.writeln( Math.pow( -5, -2 ) ); // 0.04
//传递的参数中有NaN值
document.writeln( Math.pow( "李四", 2 ) ); // NaN
0 条评论
撰写评论